-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1015 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
<!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" />
<link rel="stylesheet" href="./css/styles.css" />
<link rel="icon" href="./images/favicon.png" type="image/png" />
<title>Archero</title>
</head>
<body>
<canvas id="canvas" width="360" height="700"></canvas>
<span class="game-desc">Use Arrow Keys to move the character</span>
<script src="./js/globalVariables.js"></script>
<script src="./js/utility.js"></script>
<script src="./js/gameState.js"></script>
<script src="./js/background.js"></script>
<script src="./js/hero.js"></script>
<script src="./js/Monster.js"></script>
<script src="./js/Bullet.js"></script>
<script src="./js/Coin.js"></script>
<script src="./js/HealingItem.js"></script>
<script src="./js/score.js"></script>
<script src="./js/events.js"></script>
<script src="./js/index.js"></script>
</body>
</html>