html基础标签(二)

79 阅读1分钟
1.列表标签
ul li 
ol li 
dl dt dd
其中用的最多的是无序标签ulul中只能放lili中可以放其他标签。
2.表格标签
table
caption
thead tbody tfoot
tr th td
表格标签分结构标签和行列标签。其中结构标签是语义化的一种。
3.表单标签
form
input
select option
button
textarea
其中input通过type来设置不同的类型,text password radio checkbox button reset submit等等