-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
33 lines (31 loc) · 884 Bytes
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hud">
<div class="top-left">
<div id="question-number">Question 1/3</div>
<div id="progress-bar">
<div id="progress-bar-full"></div>
</div>
</div>
<div id="score">Score
<div> <h1 id="score-number" style="margin: 0">0</h1></div>
</div>
</div>
<div class="game-container">
<div id="question-container">
<div id="question">What is the answer to the question?</div>
<div id="answer-buttons" class="btn-container">
<!-- answer divs/buttons will be dynamically added -->
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>