-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (41 loc) · 1.53 KB
/
index.html
File metadata and controls
50 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body id="bgPics">
<header>
<div class="row">
<div id="timerField" class="col-6 offset-3">
<h1 id="gameTimerText"></h1>
<h1 id="gameTimer"><br></h1>
</div>
</div>
<div class="row">
<div id="promptField" class="col-8 offset-2">
<h3 id="gamePrompts"></h3><br>
<h4 id="instructions"></h4>
</div>
</div>
</header>
<div class="row">
<div id="controlField" class="col-8 offset-2" >
<div id="startDiv" class="text-center"></div>
<div id="questionDiv" class="text-center"></div>
<div id="answerDiv"></div>
</div>
</div>
<div class="row">
<div id="flavorPics" class="center-block" class="col-8 offset-2">
</div>
</div>
<script src="assets/javascript/app.js"></script>
</body>
</html>