forked from WEB-IB-SS26/development-ib
added solutions for exercises 1-4 of uebungsblatt 02 & moved solutions in another folder.
parent
7a26c51108
commit
1ac6f2ce15
|
|
@ -2,9 +2,10 @@
|
|||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>HTML Stoff Inhalte:</title>
|
||||
<title>WEB Inhalte Auszug</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Übersicht:</h1>
|
||||
<ul>
|
||||
<li>HTML lernen</li>
|
||||
<ul>
|
||||
|
|
@ -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>
|
||||
|
|
@ -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>
|
||||
|
|
@ -1,11 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Artikelseite</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Artikel & Tipp der Woche</h1>
|
||||
|
||||
<header>
|
||||
<h2>Übersicht:</h2>
|
||||
<nav>
|
||||
|
|
@ -18,6 +19,7 @@
|
|||
|
||||
<main id="Hauptinhalt">
|
||||
<h2> Artikel und Weiteres:</h2>
|
||||
|
||||
<section>
|
||||
<article id="Technik">
|
||||
<h3>HTML</h3>
|
||||
|
|
@ -34,6 +36,7 @@
|
|||
<h3>Tipp der Woche</h3>
|
||||
<p>Hier komt bald der "Tipp der Woche" für Sie!</p>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<footer id="Footer">
|
||||
|
|
@ -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>
|
||||
Loading…
Reference in New Issue