forked from WEB-IB-SS26/development-ib
44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<!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>© 2025 WebWeekly Redaktion</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html> |