-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.87 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Coding Quiz Challenge</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<nav>
<h3 id ="view-highscores">View Highscores</h3>
<h2 class="time"></h2>
</nav>
<main>
<h1 id="title">Coding Quiz Challenge</h1>
<h2 id="prompt">
Try to answer the following code-related questions within the time
limit. Keep in mind that incorrect answers will penalize your score
time by ten seconds.
</h2>
<button id="start-quiz">Start Quiz</button>
<div class="choices">
<button id="choice1"></button>
<button id="choice2"></button>
<button id="choice3"></button>
<button id="choice4"></button>
</div>
<div id="eval-alert">
<hr>
<h3 id="eval-text"></h3>
</div>
<div class="completion-form">
<h2 id="completion-alert"></h2>
<label for="player-initials" id="intials-label" class="label-tx">Enter Initials: </label>
<input id="player-initials" />
<button id="submit-button">Submit</button>
</div>
<h2 id="score-title">High Scores</h2>
<table class = "center" id = "player-stats"></table>
<div class="end-choices">
<button id="go-back">Go Back</button>
<button id="clear-scores">Clear Scores</button>
</div>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>