This commit is contained in:
2024-10-29 14:11:37 +01:00
parent 24cffc3c6c
commit 3954d3b1bf
10 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS schreiben</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h2>Überschrift</h2>
<table>
<tr>
<th>#</th>
<th>background-color</th>
</tr>
<tr>
<td>1.</td>
<td>lightblue</td>
</tr>
<tr>
<td>2.</td>
<td>white</td>
</tr>
<tr>
<td>3.</td>
<td>lightblue</td>
</tr>
</table>
<section>
<h2>Sektionsüberschrift</h2>
<p>Der erste Absatz.</p>
<p>Der zweite Absatz.</p>
<section>
<h2>Noch eine Sektionsüberschrift</h2>
<p>Der dritte Absatz.</p>
<p>Der vierte Absatz.</p>
</section>
<p>Der fünfte Absatz.</p>
</section>
</body>
</html>