-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
123 lines (106 loc) · 3.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<link rel="icon" type="image/ico" href="images/favicon.ico" />
<!-- Indexing -->
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="bingbot" content="index, follow" />
<meta name="application-name" content="Street Fighter 2 Remake" />
<!-- SEO -->
<title>Street Fighter 2 Remake | By Iuri Torres</title>
<meta
name="description"
content="Street Fighter 2 Remake | By Iuri Torres"
/>
<meta
name="keywords"
content="street fighter 2, remake, iuri torres, sf2, retro, game"
/>
<meta name="author" content="Iuri Torres" />
<!-- Stylesheets & Scripts -->
<link rel="stylesheet" href="index.css" />
<script defer type="module" src="src/index.js"></script>
</head>
<body>
<!-- Canvas -->
<canvas></canvas>
<!-- Sprites -->
<img src="images/ken-stage.png" alt="stage" />
<img src="images/misc.png" alt="misc" />
<img src="images/decals.png" alt="decals" />
<img src="images/shadow.png" alt="shadow" />
<img src="images/ken.png" alt="ken" />
<img src="images/ryu.png" alt="ryu" />
<!-- Sounds -->
<audio
id="theme-ken"
src="./sounds/theme-ken-main-cps1.ogg"
preload="auto"
loop
></audio>
<audio
id="sound-fighter-land"
src="./sounds/land.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-light-attack"
src="./sounds/light-attack.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-light-punch-hit"
src="./sounds/light-punch-hit.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-light-kick-hit"
src="./sounds/light-kick-hit.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-medium-attack"
src="./sounds/medium-attack.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-medium-punch-hit"
src="./sounds/medium-punch-hit.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-medium-kick-hit"
src="./sounds/medium-kick-hit.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-heavy-attack"
src="./sounds/heavy-attack.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-heavy-punch-hit"
src="./sounds/heavy-punch-hit.ogg"
preload="auto"
></audio>
<audio
id="sound-fighter-heavy-kick-hit"
src="./sounds/heavy-kick-hit.ogg"
preload="auto"
></audio>
<audio
id="sound-ryu-voice-hadouken"
src="./sounds/voice-hadouken.ogg"
preload="auto"
></audio>
<audio
id="sound-ken-voice-hadouken"
src="./sounds/voice-hadouken.ogg"
preload="auto"
></audio>
</body>
</html>