1.<img>:图片
绝对布局:<img src="pic/1.jpg"/>
相对布局:<img src="../1.jpg"/>
2.<p> 标签定义段落
3.<h1>大标签</h1>
4.<h2>小点的标签</h2>
5.<h3>再小的标签</h3>
6.<h4>更更小的标签</h4>
7.<h5>更更更小的标签</h5>
8.<h6>最小的标签</h6>
9.<hr width="100"/>
10.<del>删除文字</del>
11.<1b>文本加粗</b>
12.<i>文本加斜</i>
13.<font color="#ff0000">字体</font>
14.<sub>下标</sub>
15.<sup>上标</sup>
16.<a href="http://www.baidu.com">超链接</a>
17.<span>
行区域标签
</span>
18.<ol>
<li>有序列表1</li>
<li>有序列表2</li>
</ol>
19.<ul>
<li>无序列表1</li>
<li>无序列表2</li>
</ul>
20.表格:<table border="1" width="80%">
<tr align="center">
<td rowspan="2">表单1</td>
<td>表单2</td>
</tr>
<tr align="right">
<td>表单3</td>
<td>表单4</td>
</tr>
</table>
其中rowspan合并列,colspan合并列,align是对齐方式。
显示结果如下:
21.<br/> 换行
22.<a>超链接标签
22.form表单
<form action="" method="post">
文本:<input type="text">
密码:<input type="password"/>
单选:<input type="radio"/>
复选:<input type="checkbox"/>
隐藏:<input type="hidden"/>
文本域:<textarea rows="3" cols="20"></textarea>
</form>