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
|
<table>
<thead>
<tr>
<th>header 1</th>
<th>header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell 1.1</td>
<td>cell 1.2</td>
</tr>
<tr>
<td>cell 2.1</td>
<td>cell 2.2</td>
</tr>
<tr>
<td>[Simple table]</td>
<td></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th align="left">First Header</th>
<th align="center">Second Header</th>
<th align="right">Third Header</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">First row</td>
<td align="center">Data</td>
<td align="right">Very long data entry</td>
</tr>
<tr>
<td align="left">Second row</td>
<td align="center"><strong>Cell</strong></td>
<td align="right"><em>Cell</em></td>
</tr>
<tr>
<td align="left">[<em>Prototype</em> table][reference_table]</td>
<td align="center"></td>
<td align="right"></td>
</tr>
</tbody>
</table>
|