mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-08 12:12:53 +00:00
25 lines
558 B
HTML
25 lines
558 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>
|