mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 10:35:07 +00:00
28 lines
385 B
HTML
28 lines
385 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<table id="empty-table"></table>
|
|
<table id="full-table">
|
|
<caption>A Caption</caption>
|
|
<thead>
|
|
<th>Head Cell</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
Body Cell
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td>
|
|
Footer Cell
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</body>
|
|
</html>
|