-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
39 lines (37 loc) · 1.19 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App | play</title>
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="./css/game.css">
</head>
<body>
<span id="loader"></span>
<h4 id="error">Something went wrong | Please try again </h4>
<div id="container">
<div class="header">
<div>
<p>Question Number</p>
<span id="question-number">1</span>
</div>
<div>
<p>Score</p>
<span id="score">0</span>
</div>
</div>
<div id="question-box">
<h3 id="question-text"></h3>
<button class="answer-text"></button>
<button class="answer-text"></button>
<button class="answer-text"></button>
<button class="answer-text"></button>
</div>
<button id="finish-button">Finish</button>
<button id="next-button">Next</button>
</div>
<script type="module" src="./js/game.js"></script>
<script type="module" src="./js/helper.js"></script>
</body>
</html>