<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
<title>Tabellen-Beispiel 3: Ränder</title>
</head>
<body>
<table
border="4"
cellspacing="4"
cellpadding="6"
>
<caption>Tabellen-Überschrift</caption>
<tr>
<th></th>
<th>Spalte 1</th>
<th>Spalte 2</th>
</tr>
<tr>
<th>Zeile 1</th>
<td>Zelle A</td>
<td>Zelle B</td>
</tr>
<tr>
<th>Zeile 2</th>
<td>Zelle C</td>
<td>Zelle D</td>
</tr>
</table>
</body>
</html>