-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 777 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WDI8 Balloon Game</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/phaser.min.js"></script>
<script type="text/javascript" src="js/boot.js"></script>
<script type="text/javascript" src="js/preload.js"></script>
<script type="text/javascript" src="js/intro.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<script type="text/javascript" src="js/game_over.js"></script>
<script type="text/javascript" src="js/give_us_jobs.js"></script>
<style type="text/css">
body {
margin: 0;
background-color: black;
color: white;
}
</style>
</head>
<body>
</body>
</html>