-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.22 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.22 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
<!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 rel="stylesheet" type="text/css" href="css/style.css" />
<title>Code Quiz!</title>
</head>
<body>
<header>
<div class="header-container">
<div>
<a href="./highscores.html" class="highscores-link">
View highscores</a
>
</div>
<div>
Remaining time:
<span id="time-remaining" class="time-remaining">0 </span>
</div>
</div>
</header>
<div id="game-container">
<div id="start-page-div" class="start-page-div">
<div><h2>Coding Quiz Challenge!</h2></div>
<div>
<h4>
Try to answer the following code-related questions before the timer
runs out. Each time you answer a question wrong, the timer will
reduce by 10 seconds!
</h4>
</div>
<div class="start">
<button id="start-button" class="start-button">Start Quiz</button>
</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>