-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<link rel="preload" as="font" href="./assets/DotGothic16-Regular.ttf" type="font/ttf" crossorigin="anonymous"/>
<script src="./lib/phaser.js"></script>
<script src="./src/Menu.js"></script>
<script src="./src/Credits.js"></script>
<script src="./src/Scene1/Play1.js"></script>
<script src="./src/Scene1/Intro1.js"></script>
<script src="./src/Scene1/End1.js"></script>
<script src="./src/Transition.js"></script>
<script src="./src/prefabs/player.js"></script>
<script src="./src/Scene2/Intro2.js"></script>
<script src="./src/Scene2/Play2.js"></script>
<script src="./src/Scene2/End2.js"></script>
<script src="./src/Scene3/Intro3.js"></script>
<script src="./src/Scene3/Play3.js"></script>
<script src="./src/End.js"></script>
<script src="./src/main.js"></script>
<style>
body {
background-color:black;
}
canvas {
border: 10px solid #bd0000;
border-style: double;
}
</style>
</head>
<body>
<div style = "position:absolute; left:440px; top:500px;">
<p style="color:white;">
Move: left and right arrows<br>
Action: F Key.<br>
Credits (Only in the title screen): C Key to enter, F key to exit.</p>
</div>
</body>
</html>