27 lines
804 B
HTML
27 lines
804 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Quiz Startseite</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="app.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<main id="app">
|
|
<header class="page-header">
|
|
<h1>Quiz Startseite</h1>
|
|
<p class="lead">Wähle eine Kategorie, um dein Quiz zu starten.</p>
|
|
</header>
|
|
|
|
<!-- Kategorie-Tiles werden von app.js hier eingefügt -->
|
|
<section id="categories" aria-labelledby="categories-heading">
|
|
<h2 id="categories-heading" class="visually-hidden">Kategorien</h2>
|
|
<div class="tiles"></div>
|
|
</section>
|
|
|
|
<p id="status" class="status" aria-live="polite">Noch keine Kategorie gewählt.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|