ist ein Tag aus HTML.
Er bietet die Möglichkeit, Inhalte tabellarisch darzustellen. Dem Haupt-Tag table sind eine Reihe von weiteren Tags zugeordnet, die zur Darstellung genutzt werden, wie caption (Erklärung), th (table head, Tabellenüberschrift), tr (table row, Reihe), td (table data, Zelle).
Beispiel: OSI-Modell (Ausschnitt):
<table border="1" cellpadding="4" align="center"
summary="ISO/OSI 7-Schichten-Modell im Vergleich mit TCP/IP">
<caption align="bottom">
Vergleich OSI-Modell - TCP/IP
</caption>
<tr>
<th>Nr.</th>
<th>ISO/OSI Modell</th>
<th>TCP/IP</th>
</tr>
<tr>
<td>7</td>
<td>Anwendungsschicht</td>
<td rowspan="3" align="center">Process/Application Layer</td>
</tr>
<tr>
<td>6</td>
<td>Darstellungsschicht</td>
</tr>
<tr>
<td>5</td>
<td>Kommunikationssteuerungsschicht</td>
</tr>
</table>
Weiterführende Links
[SelfHTML- http://de.selfhtml.org/]
