-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
</head>
<body>
<canvas id="canvas"></canvas>
<!-- Player Spritesheet -->
<img id="vicViper" src="/player.png" alt="">
<img id="projectile" src="/projectile.png" alt="">
<img id="option" src="/option.png" alt="">
<!-- Enemies Spritesheet -->
<img id="garun" src="/garun.png" alt="" />
<img id="flipper" src="/flipper.png" alt="" />
<img id="enemyExplosion" src="/explosion.png" alt="">
<img id="playerExplosion" src="/playerExplosion.png" alt="">
<!-- Bg Layers -->
<img id="layer1" src="/layer1.png" />
<img id="layer2" src="/layer2.png" />
<img id="layer3" src="/layer3.png" />
<!-- MISC -->
<img id="fontDigits" src="/fontDigits.png">
<img id="fontLetters" src="/letterFont.png">
<img id="lives" src="/lives.png">
<script type="module" src="/src/main.ts"></script>
</body>
</html>