-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
58 lines (42 loc) · 1.36 KB
/
quiz.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<title>TechAcademy Quizduell</title>
<link rel="stylesheet" href="css/quiz.css">
</head>
<body>
<h1>TechAcademy's Quizduell</h1>
<span>can you reach 100% ???</span>
<div class="quizmitte">
<div class="score">
<div class="timer">
<div class="remaining time" id="app"></div>
</div>
<div class="score-card">
<span id="scoreCard">0</span>
</div>
</div>
<div class="question" id="questionBox">
</div>
<div class="options">
<ul id="ul">
<li id="op1" onclick="button(this)"></li>
<li id="op2" onclick="button(this)"></li>
<li id="op3" onclick="button(this)"></li>
<li id="op4" onclick="button(this)"></li>
</ul>
</div>
<div class="next">
<button type="button" onclick="next()" id="button">Next</button>
</div>
<div class="repeat">
<button type="button" onclick="repeat()" id="button">Repeat</button>
</div>
<div class="joker">
<button type="button" onclick="joker()" id="buttond">Joker</button>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>