1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<html>
<body>
some text...
<table>
<thead>
<colgroup>
<col span="2" style="background-color:red">
<col style="background-color:yellow">
</colgroup>
</thead>
<tbody>
<tr>
<th>header 1</th>
<th>header 2</th>
<th>header 3</th>
</tr>
<tr>
<td>data 1-1</td>
<td>data 2-1</td>
<td>data 3-1</td>
</tr>
<tr>
<td>data 1-2</td>
<td>data 2-2</td>
<td>data 3-2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>footer 1</td>
<td>footer 2</td>
<td>footer 3</td>
</tr>
</tfoot>
</table>
<table>
<tr>
<th><i>header oblique</i></th>
<th><strong>header bold</strong></th>
<th><code>header code</code></th>
</tr>
<tr>
<td><i>data oblique</i></td>
<td><strong>data bold</strong></td>
<td><code>data code</code></td>
</tr>
</table>
some text...
</body>
</html>
|