-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (51 loc) · 1.84 KB
/
index.html
File metadata and controls
64 lines (51 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Legend of Zelda Trivia Game</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style type="text/css">
body {
background-image: url('assets/images/background.jpg');
}
.jumbotron {
opacity: .90;
}
.center {
display: block;
margin: 0 auto;
}
#game {
height: 400px;
}
#game img {
height: 300px;
}
</style>
</head>
<body>
<br>
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-lg-10">
<div class="jumbotron">
<button class="btn btn-warning btn-xs theme-button"><span class="glyphicon glyphicon-music"></span> Play Theme!</button>
<button class="btn btn-default btn-xs pause-button"><span class="glyphicon glyphicon-pause"></span> Pause Song</button>
<h1>Zelda Trivia Game:</h1>
<div id="game">
<button id='start-button' class='center'>Start</button>
</div>
</div>
</div>
</div>
</div>
<!--
<h2>Time Remaining: <span id='time-remaining'></span></h2>
<h2>Yep/Nope</h2>
<h2>The correct answer was: <span id='correct-answer'></span></h2>
<img src='assets/images/rupee.gif' class='center' id='answer-image'>
-->
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>