-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (89 loc) · 2.74 KB
/
index.html
File metadata and controls
91 lines (89 loc) · 2.74 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="Assets/img/kurkur.ico" rel="icon" />
<title>Kurkur Quiz</title>
<link rel="stylesheet" href="style.css" />
</head>
<body id="body" class="white-bg">
<audio id="intro-music" autoplay>
<source src="Assets/music/intro-game.mp3" type="audio/mp3" />
</audio>
<button id="info-btn" onclick="showHideInfo()">
<svg
id="icon"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-info-lg"
viewBox="0 0 16 16"
>
<path
d="m9.708 6.075-3.024.379-.108.502.595.108c.387.093.464.232.38.619l-.975 4.577c-.255 1.183.14 1.74 1.067 1.74.72 0 1.554-.332 1.933-.789l.116-.549c-.263.232-.65.325-.905.325-.363 0-.494-.255-.402-.704zm.091-2.755a1.32 1.32 0 1 1-2.64 0 1.32 1.32 0 0 1 2.64 0"
/>
</svg>
</button>
<div id="container" class="gray-card">
<h2 id="title" class="title-quiz block">Choose Your Quiz</h2>
<div id="buttons" class="subjects-button-container block">
<button
id="start"
class="block start-button"
onclick="selectSubject('math')"
>
Math
</button>
<button
id="english"
class="block start-button"
onclick="selectSubject('english')"
>
English
</button>
<button
id="algorithm"
class="block start-button"
onclick="selectSubject('algorithm')"
>
Algorithm
</button>
</div>
<div id="quiz" class="none">
<div id="question"></div>
<div id="qImg"></div>
<div id="choices">
<button class="choice" id="A" onclick="checkAnswer('A')"></button>
<button class="choice" id="B" onclick="checkAnswer('B')"></button>
<button class="choice" id="C" onclick="checkAnswer('C')"></button>
<button class="choice" id="D" onclick="checkAnswer('D')"></button>
</div>
<div id="timer">
<div id="counter"></div>
</div>
<div id="progress"></div>
</div>
</div>
<div id="scoreContainer" class="none"></div>
<footer>Copyright © 2024 - Designed by Dnsy</footer>
<script src="app.js"></script>
<div id="load-component">
<div id="loader" style="display: none">
<div class="fade-in">
<p>
<b>Selamat mengerjakan kuis di Web Quiz!</b><br /><br />
Halo, kami developer. Di website ini terdiri dari 3 subjects yang
bisa Anda pilih, yaitu Algoritma, English, dan Matematika. Setiap
subjects terdiri dari 20 soal. Anda memiliki waktu 1.5 menit untuk
menjawab tiap soal Matematika dan Algoritma, sedangkan 1 menit untuk
tiap soal English
</p>
<p>Kalau Anda tidak bisa menjawab soal, AFK aja :)</p>
<br />
</div>
</div>
</div>
</body>
</html>