33 lines
806 B
HTML
33 lines
806 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="de">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport">
|
||
|
|
<title>Testseite</title>
|
||
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<nav>
|
||
|
|
<ul>
|
||
|
|
<li>
|
||
|
|
Start
|
||
|
|
</li>
|
||
|
|
<li>
|
||
|
|
Kontakte
|
||
|
|
</li>
|
||
|
|
<li>
|
||
|
|
Konto
|
||
|
|
</li>
|
||
|
|
</ul>
|
||
|
|
</nav>
|
||
|
|
</header>
|
||
|
|
<h1>Willkommen auf unserer Testseite</h1>
|
||
|
|
<p>Auf dieser Website machen wir viel <span style="color: red; font-weight: bold;">Quatsch</span> und Blödsinn zum testen.</p>
|
||
|
|
<h2>Fortschritt der Website</h2>
|
||
|
|
<p><progress value="5" max="100"></progress></p>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|
||
|
|
|