This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/test/fixtures/tables.html

26 lines
341 B
HTML

<html>
<body>
<h1>Heading 1</h1>
<table>
<thead>
<tr>
<th>Col 1</th>
<th>Col 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Col 1.1</td>
<td>Col 2.1</td>
</tr>
<tr>
<td>Col 1.2</td>
<td>Col 2.2</td>
</tr>
</tbody>
</table>
</body>
</html>