列表
无序列表:每个列表前面默认黑点,ul>li
//
<ul>
<li>......</li>
<li>......</li>
<li>......</li>
</ul>
有序列表:每个列表前面默认有序数字,ol>li
//
<ol>
<li>...</li>
<li>...</li>
</ol>
定义列表:列表前无标记,有标题和列表项,dl>dt+dd
//
<dl>
<dt>
<dd>...</dd>
<dd>...</dd>
</dt>
</dl>
表格
//
<table border="...">
<tr>
<th>...</th>
</tr>
<tr>
<td colspan="跨列">...</td>
<td rowspan="跨行">...</td>
</tr>
</table>
视频元素和音频元素
//
<video controls autoplay>
<source src="path" type="格式"/>
</video>
//
<audio controls autoplay>
<source src="path" type="格式">
</audio>
页面结构
heard 头部
footer 尾部
section 页面中一块独立区域
aside 侧边栏
内联框
//
<frame src="path" name="框架标识名"></frame>