blob: 0f4bb48747401115fbf9ae1aafbebecc67a992c1 [file]
<!DOCTYPE html>
<html>
<head>
<title>Table example - headers on all sides</title>
</head>
<body>
<table border=1>
<tr>
<td></td>
<th>Red</th>
<th>Green</th>
<td></td>
</tr>
<tr>
<th>Fruit</th>
<td>strawberry</td>
<td>lime</td>
<th>Fruit</th>
</tr>
<tr>
<th>Veggies</th>
<td>radish</td>
<td>spinach</td>
<th>Veggies</th>
</tr>
<tr>
<td></td>
<th>Red</th>
<th>Green</th>
<td></td>
</tr>
</table>
</html>