-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (65 loc) · 2.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Quiz App (JS OOP)</title>
</head>
<body>
<!-- Setting Page -->
<div class="settings">
<h2 class="settings__title"> Quiz Settings </h2>
<div class="n_questions">
<label for="amount">Amount of Questions:</label>
<input id="amount" type="number" min="1" max="10">
</div>
<div class="category">
<label for="category">Select Category:</label>
<select id="category" name="category">
<option value="21">Sports</option>
<option value="27">Animals</option>
<option value="11">Films</option>
<option value="28">Vehicles</option>
<option value="18">Computer Science</option>
</select>
</div>
<div class="difficulty">
<label for="difficulty">Difficulty:</label>
<label for="easy">
<input type="radio" name="difficulty" id="easy" value="easy">
Easy
</label>
<label for="medium">
<input type="radio" name="difficulty" id="medium" value="medium">
Medium
</label>
<label for="hard">
<input type="radio" name="difficulty" id="hard" value="hard">
Hard
</label>
</div>
<button id="start" class="submit">Start Quiz</button>
</div>
<!-- Quiz page -->
<div class="quiz" style="display: none;">
<h1>Quiz questions</h1>
<div class="count">
<span id="current">1</span>
<span>/</span>
<span id="total"></span>
</div>
<h3 id="question"></h3>
<label id="a1" calss="answer"></label>
<label id="a2" calss="answer"></label>
<label id="a3" calss="answer"></label>
<label id="a4" calss="answer"></label>
<button id="next">Next</button>
</div>
<div class="final" style="display:none">
<h2>You answered all questions</h2>
<p class="score"></p>
<p>try again</p>
<button id="pervious">Again</button>
</div>
<script type="module" src="./main.js"></script>
</body>
</html>