-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
53 lines (48 loc) · 1.68 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>The Hungry Bat</title>
<link href="https://fonts.googleapis.com/css?family=Cabin|Cinzel" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="navbar">
<div class="nav-content">
<a href="https://globalgamejam.org/" target="_blank">GGJ 2018</a>
<a href="https://globalgamejam.org/2018/games/hungry-bat" target="_blank">Game Page</a>
</div>
<div class="nav-content">
<a href="https://github.com/IanKBovard/hungrybat/" target="_blank">GitHub</a>
<a href="https://devleague.com/" target="_blank">DevLeague</a>
<a href="http://acm.hawaii.edu/" target="_blank">ACM</a>
</div>
</div>
<div class="container">
<div id="banner" class="content">
The Hungry Bat
</div>
<div id="options-container" class="content">
<div>
Game Options
</div>
<input type="checkbox" class="option-check"></input><span class="game-option">mic input</span>
</div>
<div id="game-container">
<div id="game" class="content"></div>
</div>
</div>
<div id="footer">
<div class="footer-content">
<div>Global Game Jam Honolulu 2018</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pizzicato/0.6.3/Pizzicato.min.js"></script>
<script src="js/audioInput.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser-ce/2.10.0/phaser.min.js"></script>
<script src="js/userOptions.js"></script>
<script src="js/game.js"></script>
</body>
</html>