x
1
<h4>表格使用水平标题:</h4>
2
<table border="1">
3
<tr>
4
<th>Name</th>
5
<th>Telephone</th>
6
</tr>
7
<tr>
8
<td>Bill Gates</td>
9
<td>555 77 854</td>
10
</tr>
11
</table>
12
13
<h4>表格使用垂直标题:</h4>
14
<table border="1">
15
<tr>
16
<th>First Name:</th>
17
<td>Bill Gates</td>
18
</tr>
19
<tr>
20
<th>Telephone:</th>
21
<td>555 77 854</td>
22
</tr>
23
</table>