Added solutions for Aufgabe 1&2

main
Oliver Stolle 2026-03-24 15:40:33 +00:00
parent f0ce3ab309
commit 528cb42fdd
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>HTML Stoff Inhalte:</title>
</head>
<body>
<ul>
<li>HTML lernen</li>
<ul>
<li>Tags</li>
<li>Listen</li>
<li>Formulare</li>
</ul>
<li>CSS entdecken</li>
<li>JavaScript üben</li>
</ul>
</body>
</html>

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Rezept für Muffins</title>
</head>
<body>
<h1>Muffins backen</h1>
<ol type="I", start=4, reversed>
<li>Backofen auf 180°C vorheizen</li>
<li>Teig vorbereiten (Mehl, Zucker, Eier etc. verrühren)</li>
<li>Teig in Förmchen füllen</li>
<li>Muffins 20 Minuten backen</li>
<li>Abkühlen lassen und servieren</li>
</ol>
</body>
</html>