HTML---table表格表头<th>
<h4>表头:</h4>
<table border="1">
<tr>
<th>姓名</th>
<th>身份证</th>
<th>电话</th>
</tr>
<tr>
<td>王五</td>
<td>00000000000000</td>
<td>11111111111</td>
</tr>
</table>
<h4>垂直的表头:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>张三</td>
</tr>
<tr>
<th>身份证</th>
<td>00011111111111</td>
</tr>
<tr>
<th>电话</th>
<td>000000000</td>
</tr>
</table>
注释:
<border>定义表框
<th>定义表头