-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.64 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
<!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="icon" type="image/x-icon" href="./items/favicon.ico">
<title>X-Wing Shooter</title>
<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=Orbitron:wght@800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PWMM303M4E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PWMM303M4E');
</script>
</head>
<body>
<canvas id='canvas'></canvas>
<!-- Vehicles -->
<img id="x-wing" src="./vehicles/x-wing.png">
<img id="tie-fighter" src="./vehicles/tie-fighter.png">
<img id="tie-bomber-left-right" src="./vehicles/tie-bomber-left-right.png">
<img id="tie-bomber-right-left" src="./vehicles/tie-bomber-right-left.png">
<img id="tie-interceptor" src="./vehicles/tie-interceptor.png">
<!-- Items -->
<img id="rebel-logo" src="./items/rebel-logo.png">
<img id="imperial-logo" src="./items/imperial-logo.png">
<img id="layer1" src="./items/space.jpg">
<img id="explosion" src="./items/explosion.png">
<img id="sw-logo" src="./items/sw-logo.png">
<script type="module" src="./main.js"></script>
</body>
</html>