Files
2025-04-13 16:49:20 +02:00

28 lines
629 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>WordCraze</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<main>
<h1>🧠 WordCraze</h1>
<section class="controls">
<button id="start">Spiel starten</button>
</section>
<section class="game">
<div id="word" class="word">_ _ _</div>
<input id="input" type="text" maxlength="1">
<div id="feedback" class="feedback"></div>
<div id="attempts" class="attempts">Versuche übrig: 8</div>
</section>
</main>
<script type="module" src="/static/app.js"></script>
</body>
</html>