Aufgabe 1-4 gelöst

branch-francesca
Francesca Bläse 2025-10-09 15:45:12 +00:00
parent 550e9b828e
commit 0899971a83
4 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset ="utf-8">
<title>Ungeordnete Liste</title>
</head>
<body>
<h1>Unnummerierte Liste</h1>
<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,18 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Muffins</title>
</head>
<body>
<h1>Muffins backen</h1>
<ol type="I" start="IV" 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>

View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Stundenplan</title>
</head>
<body>
<table>
<caption>Stundenplan - 8. Schuljahr</caption>
<thead>
<tr>
<th>Zeit</th>
<th>Montag</th>
<th>Dienstag</th>
<th>Mittwoch</th>
<th>Donnerstag</th>
<th>Freitag</th>
</tr>
</thead>
<tbody>
<tr>
<td>08-10 Uhr</td>
<td>Mathe</td>
<td>Englisch</td>
<td>Physik</td>
<td>Chemie</td>
<td>Sport</td>
</tr>
<tr>
<td>10-12 Uhr</td>
<td>Deutsch</td>
<td>Biologie</td>
<td>Musik</td>
<td>Mathe</td>
<td>Kunst</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="6">Stand Juli 2025</td>
</tr>
</tfoot>
</table>
</body>
</html>

View File