HTML lernen (2): Tabellen erstellen
Lösungen: Gestaltung von Tabellen
Gestaltung von Tabellen
Auf dieser Seite
Mit Bild
<html>
<head>
<title>Beispiel</title>
</head>
<body bgcolor="#FFFFFF">
<h4>Mietpreise pro Woche</h4>
<table border="1" width="70%" bgcolor="#3399CC" height="80%">
<tr>
<td>VW-Golf</td>
<td>Ford Mondeo</td>
</tr>
<tr>
<td>375,00 €</td>
<td>500,00 €</td>
</tr>
</table>
</body>
</html>
Mit Bild