列表
1 无序列表
<ul>
<li>1</li>
<li>2</li>
</ul>
2 有序列表
<ol>
<li></li>
</ol>
3 自定义列表
<dl>
<dt></dt>
<dd></dd>
</dl>
实战中大多数使用无序列表
都可嵌套
表格
<h3>做一个三行三列的表格</h3>
<table border="1" width="500px" height="300" align="center" />
<thead>
<tr>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>男</td>
<td rowspan="2">20</td>
</tr>
<tr>
<td>李四</td>
<td>男</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>