Teil 4
HTML4 (gültig)
HTML4 (ungültig)
HTML5
<body>
<header>
<h1>Struktur- und semantische Elemente</h1>
</header>
<section>
<h2>Haupt-Section</h2>
<aside>
<h3>Randbemerkung</h3>
</aside>
<footer>
Footer von section
</footer>
</section>
<footer>
Footer von Seite
</footer>
</body>
<table>
<tr>
<td>Tag 1</td>
<td>Tag 2</td>
<td>Tag 3</td>
</tr>
</table>
<table>
<tr>
<th>Vorname</th>
<th>Name</th>
<th>E-Mail</th>
</tr>
<tr>
<td>Sandra</td>
<td>Tester</td>
<td>sandra.tester@example.org</td>
</tr>
</table>
<table>
<thead>
<tr>
<th>Vorname</th>
<th>Name</th>
<th>E-Mail</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sandra</td>
<td>Tester</td>
<td>sandra.tester@example.org</td>
</tr>
</tbody>
</table>
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
<form action="" method="get">
<label for="vorname">Vorname</label>
<input type="text" id="vorname">
<button>Absenden</button>
</form>
Strukturelle Elemente, Tabellen, Bilder und Styling