<h1> </h1>
<h2> </h2>
<h3> </h3>
<h4> </h4>
<h5> </h5>
<h6> </h6>
<p> </p>
<br/>
<hr/>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
<ol>
<li></li>
<li></li>
<li></li>
</ol>
<dl>
<dt></dt>
<dd></dd>
</dl>
<b></b>
<strong></strong>
<i></i>
<em></em>
<u></u>
<a></a>
锚点链接
<a href=#锚点名称></a>
<a name="锚点名称"></a>
邮件链接
<a href="mailto:邮箱地址"></a>
<img/>
<table></table> 定义表格
定义行 <tr></tr>
定义列 <td></td>
表头标签 <th></th> <th>就是在<td>基础上作居中和加粗样式。
表头标题标签<caption></caption>
<form action="文件提交路径" method="文件提交方式" enctype="数据编码方式"></form>
<input type="text"/> 文本框
<input type="password"/>密码框
<input type="radio"/>单选框
<input type="checkbox"/>多选框
<input type="button"/>命令按钮
<input type="reset"/>重置按钮
<input type="submit"/>提交按钮
<input type="file"/>文件选择框
下拉列表标签
<select>
<option></option>
</select>
文本域标签
<textarea></textarea>
<video></video>
<div></div>
<span></span>