-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (41 loc) · 1.69 KB
/
index.html
File metadata and controls
72 lines (41 loc) · 1.69 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Trivia game</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Tangerine">
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<div class="jumbotron">
<div class="container" >
<h1 class="text-center">History Trivia</h1>
<!-- This is the timer -->
<h2 class="text-center" id="timer">Timer takes place here</h2>
<!-- Question section -->
<h3 class="text-center" id="question" >Question takes place here</h3>
<p id="correct-answer">Answer here</p>
<img src="" id="correct-answer-image">
<!-- This is the answer's div -->
<div class="answers-div">
<p class="text-center"><button id="answer-one">Option1</button></p>
<p class="text-center "><button id="answer-two">Option2</button></p>
<p class="text-center"><button id="answer-tree">Option3</button></p>
<p class="text-center"><button id="answer-four">Option4</button></p>
<p id="wins"></p>
<p id="losees"></p>
<p id="unanswered"></p>
</div>
<!-- This is the start button -->
<div id="start-button-div">
<button id="start-button">START</button>
</div>
</div>
</div>
<script src="javascript/app.js" type="text/javascript"></script>
</body>
</html>