-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 906 Bytes
/
index.html
File metadata and controls
38 lines (31 loc) · 906 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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style.css">
<title>Code Quiz</title>
</head>
<body>
<header>
<h1>Coding Quiz</h1>
<button id="start" class="start-button">Start Quiz!</button>
</header>
<main class="container">
<section class="quiz">
<h2>Time Remaining:</h2>
<h2 class="timer"></h2>
<h2 id="question"></h2>
<div id="answers"></div>
</section>
</main>
<aside class="scores">
<h2> Your Quiz Score!</h2>
<p id="nameScore"></p>
</aside>
<footer>
<h4>Coding Quiz developted by Ant-M84!</h4>
</footer>
<script src="./assets/script.js"></script>
</body>
</html>