-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.53 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multiple Choice Quiz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="quiz-container">
<div id="quiz">
<h2 id="question">Frage wird geladen...</h2>
<div class="choices">
<label>
<input type="radio" name="choice" class="choice" value="0">
<span id="choice0">Option 1</span>
</label>
<label>
<input type="radio" name="choice" class="choice" value="1">
<span id="choice1">Option 2</span>
</label>
<label>
<input type="radio" name="choice" class="choice" value="2">
<span id="choice2">Option 3</span>
</label>
<label>
<input type="radio" name="choice" class="choice" value="3">
<span id="choice3">Option 4</span>
</label>
</div>
<div id="feedback" class="feedback"></div>
<button id="previous" hidden>Vorherige Frage</button>
<button id="next">Nächste Frage</button>
</div>
<div id="results">
<h2>Quiz beendet!</h2>
<p id="score"></p>
<button id="restart">Quiz neu starten</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>