-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 962 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 962 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Code Quiz</title>
<link rel="stylesheet" href="./Assets/CSS/reset.css">
<link rel="stylesheet" href="./Assets/CSS/style.css">
</head>
<body>
<header>
<p><button class="highScoresButton">High Scores</button></p>
<p class="timer">Time remaining: <span class="seconds"></span></p>
</header>
<main class="content">
<h2 class="title">JavaScript Code Quiz</h2>
<p class="description">This timed quiz will ask you various questions about JavaScript. The faster you complete the quiz, and the more answers you get right, the higher your score will be. Good luck!</p>
<button id="startButton" class="button">Start</button>
<div id="holder">
</div>
</main>
</body>
<script src="./Assets/JavaScript/script.js"></script>
</html>