-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 944 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
28
29
30
31
<!DOCTYPE html>
<html>
<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" />
<link rel="stylesheet" href="./assets/style.css" />
<title>Coding Quiz</title>
</head>
<header>
<div>
<button id="scores">View Highscores</button>
</div>
<div id="timer" class="time">Time: 60</div>
</header>
<body>
<h1>Coding Quiz Challenge</h1>
<div id="start">
<button>Start</button>
</div>
<div class="quiz-container">
<div id="quiz"></div>
</div>
<button id="previous">Previous</button>
<button id="next">Next</button>
<button id="submit">Submit Quiz</button>
<div id="results"></div>
<script src="./assets/script.js"></script>
</body>
</html>