-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (33 loc) · 1.27 KB
/
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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<title>JavaScript Quiz</title>
</head>
<body>
<div class="container">
<div id="quiz">
<p class="category-type">Category: Computers</p>
<h1 class="main-header">Quiz</h1>
<hr>
<p id="question"></p>
<div class="buttons">
<button id="btn0"><span id="choice0"></span></button>
<button id="btn1"><span id="choice1"></span></button>
<button id="btn2"><span id="choice2"></span></button>
<button id="btn3"><span id="choice3"></span></button>
</div>
<hr>
<p id="progress"></p>
<div id="progressBar">
<div id="progressBarFill"></div>
</div>
</div>
<div id="results"></div>
</div>
<script src="quiz.js"></script>
</body>
</html>