Hallo Alexander,
Zu jeder Tabelle gehört ein Tabellenkopf mit Überschriften für die einzelnen Spalten. Eine Tabelle, die das nicht hat ist meistens eine Design-Tabelle und damit _böse_.
<table id="layouttabelle">
<caption>Meine Seite</caption>
<thead>
<tr>
<th id="navigation">Navigation</th>
<th id="content">Inhalt</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="navigation">
<ul>
<li><a href="">...</a></li>
<li><a href="">...</a></li>
</ul>
</td>
<td headers="content">
<p>...</p>
</td>
</tr>
</tbody>
</table>
Tim