html中常用的标签都有哪些,指出他们的语义化内容

div 无语义
p 段落
h1 - h6 标题
ul li 无序列表
ol li 有序列表
dl dt dd 定义列表

span 无语义
i,em 斜体强调
b,strong 加粗强调
a 链接

表格类
table 表格
thead 标题行
tbody 表格内容
tr 行
th,td 单个表格块

表单类
input[type=text] 输入框
input[type=password] 密码框
input[type=radio] 单选框
input[type=checkbox] 多选框
select option 下拉框
textarea 文本域
label 无语义

你可能感兴趣的:(html中常用的标签都有哪些,指出他们的语义化内容)