forked from nastiazhyrnova/Quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.13 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type- href="styles.css">
<title>Art History Quiz - 2</title>
</head>
<body>
<div class="app">
<div class="container">
<div class="jabquiz">
<div class="questionbox">
<h1 class="question"></h1>
<p class="tracker"></p>
<div class="progressbar">
<div class="progressbar__inner"></div>
</div>
<p class="tagline">Pick an option below</p>
</div>
<div class="choices-box">
<ul class="choices">
</ul>
</div>
<div class="footer">
<button class="button button-bordered restart">Restart</button>
<button class="button button-bordered next">Next</button>
</div>
</div>
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>