60 lines
1.3 KiB
HTML
60 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Website | Homepage</title>
|
|
</head>
|
|
<body>
|
|
<!-- begin static content -->
|
|
<header>
|
|
<img src="https://placehold.co/200x180">
|
|
<div id="company">Website</div>
|
|
<div id="slogan">da kongred Website</div>
|
|
</header>
|
|
|
|
<hr>
|
|
|
|
<nav>
|
|
<!-- Ebene 1-->
|
|
<ul>
|
|
<li><a href="index.html">Homepage</a></li>
|
|
<li><a href="#">About Us</a></li>
|
|
<li><a href="#">Portfolio</a></li>
|
|
<li><a href="#">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<hr>
|
|
|
|
<!-- end static content -->
|
|
<!-- begin dynamic content -->
|
|
<main>
|
|
<h1>Homepage</h1>
|
|
<p>Welcome!</p>
|
|
</main>
|
|
<!-- end dynamic content -->
|
|
|
|
<hr>
|
|
|
|
<aside>
|
|
<h3>Save the dates</h3>
|
|
<p>
|
|
<ul>
|
|
<li>2025-11-01: Event 1</li>
|
|
<li>2025-11-02: Event 2</li>
|
|
<li>2025-11-03: Event 3</li>
|
|
</ul>
|
|
</p>
|
|
</aside>
|
|
|
|
<hr>
|
|
|
|
<!-- begin static content -->
|
|
<footer>
|
|
Created by <a href="https://github.com/danielvici">danielvici</a>(.com)
|
|
© 2025
|
|
</footer>
|
|
<!-- end static content -->
|
|
</body>
|
|
</html> |