-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 1.49 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Trivia Game</title>
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href=assets/css/styles.css"">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-3 text-center">Science Trivia Game</h1>
</div>
</div>
<!-- container for game -->
<div class="container">
<div class="jumbotron">
<div id="game"></div>
<div id="buttons">
<button class='btn btn-dark button' id='next' type="button"><a href='#'>Next</a></button>
<button class='btn btn-dark button' id='prev' type="button"><a href='#'>Prev</a></button>
<button class='btn btn-dark button' id='start' type="button"><a href='#'>Start Over</a></button>
</div>
</div>
</div>
<script type="text/javascript" src="assets/js/game.js"></script>
</body>
</html>