-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstage_select.html
84 lines (75 loc) · 2.42 KB
/
stage_select.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/canvas.css" type="text/css" />
<link rel="stylesheet" href="./css/stage_select.css" type="text/css" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Fonts -->
<link href="https://fonts.cdnfonts.com/css/road-rage" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<title>Stage Select</title>
<!-- testing to add scripts in the head -->
<script src="./js/stage_selection/stage_selection.js" defer></script>
<script src="./js/stage_selection/stages.js" defer></script>
</head>
<body>
<header>
<img
class="logo"
src="./for-later/Start_Screen_White_BG_png.png"
alt="logo"
/>
<nav>
<ul class="navigation">
<li><a href="character_selection.html">Characters</a></li>
<li><a href="stage_select.html">Stages</a></li>
<li>
<a
href="https://www.youtube.com/playlist?list=PLPWWCtCQd2PbFNNH1onjy_3HjNCNyqqZa"
>Soundtrack</a
>
</li>
<li><a href="controls.html">Controls</a></li>
</ul>
</nav>
<ul class="navigation">
<a href="index.html" class="link">Go back</a>
</ul>
</header>
<h1>Select Your Stage</h1>
<p></p>
</body>
<!-- Music controller graphics -->
<div class="backgrounds">
<div id="background_1" onClick="window.location.href='canvas.html';">
<img src="./assets/background_1.png" height="189.75" width="337.92" />
</div>
<div id="background" onClick="window.location.href='canvas.html';">
<img src="./assets/background.png" height="189.75" width="337.92" />
</div>
<div id="background_2" onClick="window.location.href='canvas.html';">
<img src="./assets/background_2.png" height="189.75" width="337.92" />
</div>
<div id="background_3" onClick="window.location.href='canvas.html';">
<img src="./assets/background_3.png" height="189.75" width="337.92" />
</div>
</div>
<!-- <script src="./js/stage_selection/stage_selection.js"></script>
<script src="./js/stage_selection/stages.js"></script> -->
<footer>
<div class="copyright">
<p>
copyright ©
<script>
document.write(new Date().getFullYear());
</script>
Hiken. designed by Spencer, Joji, Nghia, Matthew, Ethan, and Edwin
</p>
</div>
</footer>
</html>