added solutions for exercises 1-4 of uebungsblatt 02 & moved solutions in another folder.

main
Oliver Stolle 2026-03-28 16:23:01 +00:00
parent 7a26c51108
commit 1ac6f2ce15
6 changed files with 73 additions and 19 deletions

View File

@ -2,9 +2,10 @@
<html lang="de"> <html lang="de">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>HTML Stoff Inhalte:</title> <title>WEB Inhalte Auszug</title>
</head> </head>
<body> <body>
<h1>Übersicht:</h1>
<ul> <ul>
<li>HTML lernen</li> <li>HTML lernen</li>
<ul> <ul>

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>

View File

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Stundenplan</title>
</head>
<body>
<h1>Beispiel Stundenplan:</h1>
<table>
<caption>Stundenplan - 8. Schuljahr</caption>
<thead>
<tr>
<th scope="col">Zeit</th>
<th scope="col">Montag</th>
<th scope="col">Dienstag</th>
<th scope="col">Mittwoch</th>
<th scope="col">Donnerstag</th>
<th scope="col">Freitag</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="5">Stand: Juli 2025</td>
</tr>
</tfoot>
<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>
</table>
</body>
</html>

View File

@ -1,11 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="de">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Artikelseite</title> <title>Artikelseite</title>
</head> </head>
<body> <body>
<h1>Artikel & Tipp der Woche</h1> <h1>Artikel & Tipp der Woche</h1>
<header> <header>
<h2>Übersicht:</h2> <h2>Übersicht:</h2>
<nav> <nav>
@ -18,6 +19,7 @@
<main id="Hauptinhalt"> <main id="Hauptinhalt">
<h2> Artikel und Weiteres:</h2> <h2> Artikel und Weiteres:</h2>
<section> <section>
<article id="Technik"> <article id="Technik">
<h3>HTML</h3> <h3>HTML</h3>
@ -34,6 +36,7 @@
<h3>Tipp der Woche</h3> <h3>Tipp der Woche</h3>
<p>Hier komt bald der "Tipp der Woche" für Sie!</p> <p>Hier komt bald der "Tipp der Woche" für Sie!</p>
</section> </section>
</main> </main>
<footer id="Footer"> <footer id="Footer">

View File

@ -1,17 +0,0 @@
<!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>