61 lines
730 B
HTML
61 lines
730 B
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>abc</th>
|
|
<th>def</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>bar</td>
|
|
<td>foo</td>
|
|
</tr>
|
|
<tr>
|
|
<td>baz</td>
|
|
<td>boo</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<hr>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>abc</th>
|
|
<th>def</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>bar</td>
|
|
<td>foo</td>
|
|
</tr>
|
|
<tr>
|
|
<td>baz</td>
|
|
<td>boo</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<hr>
|
|
|
|
<p>text then table</p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>abc</th>
|
|
<th>def</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>bar</td>
|
|
<td>foo</td>
|
|
</tr>
|
|
<tr>
|
|
<td>baz</td>
|
|
<td>boo</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<hr>
|