Add index.html

With fonts retrieved from Google Fonts, which is not ideal, but we can inlne those
This commit is contained in:
Jakob Moser 2025-11-13 19:47:07 +01:00
parent b3cefa32b7
commit be55bb91dc
Signed by: jakob
GPG Key ID: 3EF2BA2851B3F53C

View File

@ -0,0 +1,24 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Karaokatalog</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0..1,0"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<p>Lade Karaokatalog-App...</p>
</main>
<script type="module" src="karaokatalog.js"></script>
</body>
</html>