-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath.html
More file actions
27 lines (27 loc) · 902 Bytes
/
math.html
File metadata and controls
27 lines (27 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mathe-Übungen</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<a href="index.html" class="back-link">← Zurück</a>
<h1>Mathe-Übungen</h1>
<div class="score">Richtig: <span id="correct">0</span> / <span id="total">0</span></div>
<div class="problem" id="problem"></div>
<div class="hint" id="hint"></div>
<div class="answer-row">
<input type="text" id="answerInput" autocomplete="off" placeholder="Antwort">
<button id="submitBtn">Prüfen</button>
</div>
<div class="feedback" id="feedback"></div>
<button id="nextBtn">Nächste Aufgabe</button>
<div class="type-label" id="typeLabel"></div>
</div>
<script src="js/problems.js"></script>
<script src="js/app.js"></script>
</body>
</html>