24 lines
843 B
HTML
24 lines
843 B
HTML
<!doctype html>
|
|||
|
|
<html lang="de">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Zauberwald</title>
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||
|
|
<link
|
||
|
|
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Nunito:wght@400;600&display=swap"
|
||
|
|
rel="stylesheet"
|
||
|
|
/>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<section id="screen-welcome" class="screen screen--active"></section>
|
||
|
|
<section id="screen-forest" class="screen"></section>
|
||
|
|
<section id="screen-lesson" class="screen"></section>
|
||
|
|
<section id="screen-reward" class="screen"></section>
|
||
|
|
<section id="screen-parent" class="screen"></section>
|
||
|
|
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|