26 lines
No EOL
786 B
HTML
26 lines
No EOL
786 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Mathespiel</title>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h3>Schreibe die richtige Zahl oder das richtige Rechenzeichen in die Lücke</h3>
|
|
<div id="question"></div>
|
|
<button id="submit-btn">Bestätigen</button>
|
|
<p id="error-msg">Da gab es einen Fehler</p>
|
|
</div>
|
|
<div class="controls-container">
|
|
<p id="result"></p>
|
|
<button id="start-btn">Spiel starten</button>
|
|
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |