-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 1.41 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Quiz📝 </title>
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<!-- Access to Scores and Timer -->
<section>
<nav>
<h4>
<a href="./highscores.html" target="_blank">View Highscores</a>
</h4>
<h4 id="remaining"></h4>
</nav>
</section>
<!-- Start Page -->
<section id="start-container">
<h1>Coding Quiz Challenge</h1>
<p>
Try to answer the following code-related questions within the time
limit. Keep in mind that incorrect answers will penalize your
score time by 10 seconds
</p>
<button class="button" id="start">Start Quiz</button>
</section>
<!-- Quiz Page -->
<section id="quiz-container">
<h2 id="question-container"></h2>
<div id="choices-container"></div>
<h3 id="wrong-or-right"></h3>
</section>
<!-- Results Page -->
<section hidden id="results-container">
<h2> All Done!</h2>
<h3 id="final"></h3>
<form>
<label for="initials">Enter Initials:</label>
<input type="text" id="user-initials" required minlength="1" maxlength="3">
<button id="score-submit" class="button">Submit</button>
</form>
</section>
<script src="./assets/js/script.js"></script>
</body>
</html>