-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.06 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>
<title>Week 5 - Homework</title>
<script src="https://code.jquery.com/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<div id="game-canvas">
<h1>Game of Thrones Quiz</h1>
<p id="background-image"></p>
<br>
<h2 id="title">Question</h2>
<h3 id="timer">You have 30 seconds remaining</h3>
<button class="button-options" id="first-option">First Option</button>
<button class="button-options" id="second-option">Second Option</button>
<button class="button-options" id="third-option">Third Option</button>
<button class="button-options" id="fourth-option">Fourth Option</button>
</div>
<div id="start-screen">
<h1>Game of Thrones Quiz</h1>
<button id="start-button">Click to Continue</button>
</div>
<div id="end-screen">
<h1>Finished!</h1>
<p id="correct"></p>
<p id="incorrect"></p>
<p id="unanswered"></p>
<button id="reset-button">Reset</button>
</div>
<script src="assets/game.js"></script>
</body>
</html>