-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="./styles/normalize.css">
<link rel="stylesheet" href="./styles/style.css">
<title>Space-LoL!</title>
</head>
<body>
<main id="main">
</main>
<script src="./src/Background.js"></script>
<script src="./src/Ship.js"></script>
<script src="./src/EnemyShip.js"></script>
<script src="./src/Bonus.js"></script>
<script src="./src/Character.js"></script>
<script src="./src/Player.js"></script>
<script src="./src/Enemy.js"></script>
<script src="./src/Bullet.js"></script>
<script src="./src/EnemyBullet.js"></script>
<script src="./src/Hit.js"></script>
<script src="./src/Explosion.js"></script>
<script src="./src/Game.js"></script>
<script src="./src/Screen.js"></script>
<script src="./src/main.js"></script>
</body>
</html>