-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1007 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang=en-us>
<head>
<title>JavaScript Quiz</title>
<meta charset="UTF-8">
<link rel="stylesheet" href=./assets/css/reset.css>
<link rel="stylesheet" href=./assets/css/style.css>
</head>
<body>
<header class=row>
<div id=highscores data-state=hide>View Highscores</div>
<div id=timer>Time Left: 100</div>
</header>
<main id=main class=column>
<div class=row>
<h1>Javascript Quiz Challenge</h1>
</div>
<div class=row>
<h2>Instructions: This quiz will assess your Javascript method knowledge! Each prompt will be a definition of a specific JavaScript method. Click the correct method that the definition belongs to.</h2>
</div>
<div class=row>
<button id=start>Start Quiz</button>
</div>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>