-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 758 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 758 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
25
26
27
28
29
30
31
<!doctype html>
<html>
<head>
<title>Jump Game</title>
<style>
html {
background-color: black;
}
#gameCanvas {
/*Center canvas horizontally*/
margin: 80px auto;
display: block;
background-color: white;
}
</style>
<!-- Implementation of JS-files -->
<script src="JS/imageHandler.js"></script>
<script src="JS/keyHandler.js"></script>
<script src="JS/spriteAnimation.js"></script>
<script src="JS/spriteAnimationManager.js"></script>
<script src="JS/player.js"></script>
<script src="JS/background.js"></script>
<script src="JS/island.js"></script>
<script src="JS/islandManager.js"></script>
<script src="JS/engine.js"></script>
<script src="JS/main.js"></script>
</head>
<body>
</body>
</html>