1. Version of Aufgabe_4

main
Oliver Stolle 2026-03-25 10:24:03 +00:00
parent 75c3fbdc6d
commit 3a705192a8
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Artikelseite</title>
</head>
<body>
<h1>Artikel & Tipp der Woche</h1>
<header>
<h2>Übersicht:</h2>
<nav>
<a href="#Hauptinhalt">Hauptinhalt</a>
<a href="#Technik">Technik</a>
<a href="#Design">Design</a>
<a href="#Footer">Kontakt</a>
</nav>
</header>
<main id="Hauptinhalt">
<h2> Artikel und Weiteres:</h2>
<section>
<article id="Technik">
<h3>HTML</h3>
<p>Dies ist der Anfang eines Artikels über HTML.</p>
</article>
<article id="Design">
<h3>CSS</h3>
<p>Dies ist ein weiterer Anfang eines Artikels über CSS.</p>
</article>
</section>
<section>
<h3>Tipp der Woche</h3>
<p>Hier komt bald der "Tipp der Woche" für Sie!</p>
</section>
</main>
<footer id="Footer">
<p>&copy; 2025 WebWeekly Redaktion</p>
</footer>
</body>
</html>