-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (43 loc) · 1.9 KB
/
Copy pathindex.html
File metadata and controls
54 lines (43 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trivia Game</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Comfortaa|Nunito+Sans|Special+Elite" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<header>
<div class='col-lg-12 col-md-12 col-sm-12 col-xs-12'>
<img class="img-responsive " src="images/bigbangtheorybanner-2.jpg">
<h1>Big Bang Theory Trivia Game</h1>
</div>
</header>
<div id="game" class="row">
<div class="col-lg-offset-1 col-lg-6 col-md-6 col-sm-12">
<button id="start-button">Start</button>
<div id="timecontainer" class="margintpbtm"> </div>
<div id="q-container">
<div id="question"></div>
<ul id="answers" class="margintpbtm"></ul>
<div id="submitbtn"></div>
</div>
</div>
<div id="q-gif" class="col-lg-offset-1 col-lg-5 col-md-offset-1 col-md-5 col-sm-12"></div>
</div>
<div id='scoretally' class="row">
<div id='tally' class='col-lg-offset-1 col-lg-5 col-md-5 col-sm-12'></div>
<div class="col-lg-5 col-md-5 col-sm-12">
<img id='tally-gif' class="img-responsive" src=''/>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script type="text/javascript" src="javascript/app.js"></script>
</body>
</html>