-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 963 Bytes
/
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
<style>
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap');
body {
background: black;
}
h1{
font-family: 'Cinzel Decorative', cursive;
}
h1, h3, p{
color: white;
}
</style>
<h1>Axe Quest </h1>
<canvas></canvas>
<h3>KEYS: </h3>
<p>[a] MOVE RIGHT <br/>
[d] MOVE LEFT <br />
[w] JUMP / OPEN DOOR</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/gsap.min.js"
integrity="sha512-Mf/xUqfWvDIr+1B6zfnIDIiG7XHzyP/guXUWgV6PgaQoIFeXkJQR5XWh9fqAiCiRCpemabt3naV4jhDWVnuYDQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="js/utils.js"></script>
<script src="js/data/collisions.js"></script>
<script src="js/classes/CollisionBlock.js"></script>
<script src="js/classes/Sprite.js"></script>
<script src="js/classes/Player.js"></script>
<script src="js/eventListeners.js"></script>
<script src="index.js"></script>