31 lines
486 B
HTML
31 lines
486 B
HTML
|
<!doctype html>
|
||
|
<html lang="de">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Grundstruktur</title>
|
||
|
<style>
|
||
|
h1 {
|
||
|
color: magenta;
|
||
|
font-size: 100pt;
|
||
|
}
|
||
|
|
||
|
h2.meineUeberschrift {
|
||
|
color: blue;
|
||
|
font-size: 50pt;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Apfelmus</h1>
|
||
|
|
||
|
<img src="apfelmus.jpg">
|
||
|
|
||
|
<h2 class="meineUeberschrift">Zutaten</h2>
|
||
|
<p>Ein Absatz...</p>
|
||
|
|
||
|
<h2>Herstellung</h2>
|
||
|
<p>Ein weiterer Absatz</p>
|
||
|
</body>
|
||
|
|
||
|
</html>
|