-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (55 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/style.css">
<title>Code Quiz</title>
</head>
<body>
<main class="center">
<!-- Opening section -->
<section class="box" id="openingSection">
<h1>Code Quiz</h1>
<ul id="intro">
<li>Read the questions carefully and answer to the best of your ability.</li>
<li>You will have 60 seconds to finish the quiz.</li>
</ul>
<button id="startBtn">START</button>
</section>
<!-- Questions section -->
<section class="box" id="quizSection">
<h3 id="timer"></h3>
<h2 id="question"></h2>
<div id="choices">
<button class="choiceBtn" id="choice0"></button><br>
<button class="choiceBtn" id="choice1"></button><br>
<button class="choiceBtn" id="choice2"></button><br>
<button class="choiceBtn" id="choice3"></button><br>
</div>
</section>
<!-- Ending section -->
<section class="box" id="endingSection">
<h1>You completed the quiz!</h1>
<p id="finalScore"></p>
<h3>Save your score:</h3>
<form>
<label for="initials">Initials:</label><br>
<input type="text" id="initials" name="initials"><br>
</form>
<button id="saveBtn">SAVE</button>
</section>
<!-- Highscores section -->
<section class="box" id="scoresSection">
<h1>Highscores</h1>
<ul id="highScores"></ul>
<button id="restartBtn">Restart Quiz</button>
<button id="clearBtn">Clear scores</button>
</section>
</main>
<script src="./assets/script.js"></script>
</body>
</html>