-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.85 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
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Trivia Game</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
</head>
<body>
<center><div class="entire-container">
<div row class="header col-md-12">
<h1>GlobeTrivias</h1>
</div>
<button id="start">Start</button>
<div row class="main-container col-md-8">
<p class="timer">Time Remaining: </p>
<div row class="game-container col-md-6">
<div class="questions"></div>
<div class="answers">
<button class = "answer-1"></button>
<button class = "answer-2"></button>
<button class = "answer-3"></button>
<button class = "answer-4"></button>
</div>
</div>
<div row class="answer-container col-md-6">
<div class="user-correct">Hurray; you're right! The correct answer is, in fact: </div>
<div class="user-incorrect">Bummer; you were wrong. The answer we were looking for is: </div>
<div class="unanswered">You ran out of time! I won't count it against you, but the answer was: </div>
<div class="correct-answer"></div>
<div class="image"></div>
</div>
<div row class="endGame col-md-6">
<div class="right"></div>
<div class="wrong"></div>
<div class="blank"></div>
<button id="restart">Play Again?</button>
</div>
</div>
</div></center>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>