-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 2.73 KB
/
Copy pathindex.html
File metadata and controls
75 lines (72 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<!-- Google Fonts -->
<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=Amatic+SC&family=Bungee+Shade&family=Vast+Shadow&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./Develop/css/style.css" />
<title>Coding Quiz</title>
</head>
<body>
<div id="quiz-container"></div>
<div class="page one">
<h2 class="quiz-header">Coding Quiz</h2>
<button class="btn-start">Start Quiz!</button>
</div>
<div class="page two" id="quizQuestions">
<h5 class="quiz-header"></h5>
<h6 class="question"></h6>
<ul>
<li>
<input type="radio" id="a" name="options" value="a">
<label for="a" id="label-a"></label>
</li>
<li>
<input type="radio" id="b" name="options" value="b">
<label for="b" id="label-b"></label>
</li>
<li>
<input type="radio" id="c" name="options" value="c">
<label for="c" id="label-c"></label>
</li>
<li>
<input type="radio" id="d" name="options" value="d">
<label for="d" id="label-d"></label>
</li>
</ul>
<p class="time">Timer</p>
<p class="points">Points: 0</p>
<button class="btn-submit">Next Question</button>
</div>
<div class="page three">
<h2 class="score-page">All done!</h2>
<p>Your final score is <span id="points">_____.</span></p>
<p>Enter initials:</p>
<input type="text">
<button class="btn-score">Submit</button>
</div>
<div class="page four">
<!-- Display high scores -->
<h2>High Scores</h2>
<p class="winner"></p>
<button class="btn-restart">Back to start</button>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"
></script>
<script src="./Develop/js/script.js"></script>
</body>
</html>