You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
964 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Meine Webseite</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Startseite</a></li>
<li><a href="/projekte">Projekte</a></li>
<li><a href="/neuigkeiten">Neuigkeiten</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Willkommen auf meiner Webseite</h1>
<p>Dies ist der Inhalt der Startseite.</p>
</section>
<section class="content">
<h2>Über Uns</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla hendrerit mauris vel nisl volutpat, at gravida ex commodo. Suspendisse potenti. Nulla facilisi.</p>
</section>
<footer>
<p>&copy; 2023 Meine Webseite. Alle Rechte vorbehalten.</p>
</footer>
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>