Forum Moderators: open
This is the basic structure...
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
<title>untitled document</title>
</head>
<body>
<table>
<caption>caption</caption>
<thead>
<tr>
<th>header</th>
<th>header</th>
</tr>
</thead>
<tfoot>
<tr>
<td>footer</td>
<td>footer</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>body</td>
<td>body</td>
</tr>
</tbody>
</table>
</body>
</html>