forked from WEB-IMB-WS2526/lab-development-imb
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sectioning</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="#main">Hauptinhalt</a>
|
|
<a href="#html">Design</a>
|
|
<a href =#css>Design</a>
|
|
<a href="#footer">Kontakt</a>
|
|
|
|
|
|
</nav>
|
|
</header>
|
|
<main id="main">
|
|
<section>
|
|
<article id="html">
|
|
<h2>HTML</h2>
|
|
<p>HTML ist eine Auszeichnungssprache</p>
|
|
</article>
|
|
<article id="css">
|
|
<h2>CSS</h2>
|
|
<p>CSS ist eine Stylesprache</p>
|
|
</article>
|
|
</section>
|
|
<section>
|
|
<h2>Tipp der Woche</h2>
|
|
<p>...selbst Tippen!</p>
|
|
</section>
|
|
</main>
|
|
<footer id="footer">
|
|
<p>© 2025 WebWeekly Redaktion</p>
|
|
</footer>
|
|
</body>
|
|
</html> |