<table></table>标签定义html表格
<table border="3" width="500px" align="center" style="border-collapse:collapse;">
<tr align="center" valign="top" bgcolor="green">
<th>姓名</th>
<th>年龄</th>
<th>爱好</th>
</tr>
<tr align="center" valign="top" bgcolor="red">
<td>张辰龙</td>
<td>23岁</td>
<td>网络</td>
</tr>
</table>
colspan 横向合并
rowspan 纵向合并