HTML lernen (2): Tabellen erstellen
Lösungen: Aufbau einer Tabelle
Aufbau einer Tabelle
Auf dieser Seite
Mit Bild
<html>
<head>
<title>Flüge und Preise</title>
</head>
<html>
<body bgcolor="#ffffff">
<table>
<tr>
<th>Stadt</th>
<th>Preis</th>
<th>Flugzeit</th>
</tr>
<tr>
<td>New York</td>
<td>900,00 €</td>
<td>6 Std.</td>
</tr>
<tr>
<td>Bangkok</td>
<td>1100,00 €</td>
<td>9 Std.</td>
</tr>
</table>
</body>
</html>
Mit Bild