-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtamship.html
151 lines (133 loc) · 6.05 KB
/
tamship.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>King of Space: Reconstruction of a Narrative Game</title>
<link rel="shortcut icon" type="image/png" href="img/kosabt.png">
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha256-gvEnj2axkqIj4wbYhPjbWV7zttgpzBVEgHub9AAZQD4=" crossorigin="anonymous" />
<link rel="stylesheet" href="css/individualships.css">
</head>
<body>
<!--Navbar-->
<header>
<div class="container">
<div>
<a href="index.html">
<img class="navlogo" src="img/kosnavwhite.png">
</a>
</div>
<input class="hamburger-button" type="checkbox" id="hamburger-button" />
<label for="hamburger-button">
<div></div>
</label>
<div class="menu">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="author.html">Author</a></li>
<li><a href="gamehistory.html">Game History</a></li>
<li><a href="characters.html">Characters</a></li>
<li><a href="restoration.html">Restoration</a></li>
<li><a href="credits.html">Team</a></li>
</ul>
</nav>
<div class="buttons">
<a href="game/game.html" class="button primary">PLAY GAME</a>
</div>
</div>
</div>
</header>
<!--End Section-->
<!--Lifeship-->
<section id="ships">
<div class="shwrapper">
<div class="shheader">SPACESHIPS</div>
<div class="shgridcontainer">
<div class="shitem"><a href="lifeship.html"><img class="profile" src="img/lifeship.png">
<div class="shname">Lifeship</div>
</a>
</div>
<div class=" shitem"><a href="greatship.html"><img class="profile" src="img/greatship.png">
<div class="shname">Greatship</div>
</a>
</div>
<div class=" shitem"><a href="tamship.html"><img class="profile"
style="border-color: #49817b; transform: scale(1.1);" src="img/escapepod.png">
<div class="shname" style="color: #49817b;">Escape Pod</div>
</a>
</div>
</div>
</div>
<div class="abtwrapper">
<div class="abtgridcontainer">
<div class="abtitem"><video autoplay loop muted>
<source src="img/3d-escapepod.mp4" type="video/mp4">
</video></div>
<div class="abtitem2"><span style="font-size: 40px;">ESCAPE POD</span>
<br>
Tam Rosse's Ship
<br>
<br>
Tam Rosse's escape pod is pulled by Lady Nii's power toward the Greatship and the Lifeship. Which one will help him survive?
</div>
</div>
</div>
</section>
<!--End Section-->
<!--Play Game-->
<section class="parallax">
<a href="game/game.html"><button class="playbtn">PLAY GAME</button></a>
</section>
<!--End Section-->
<!--Footer-->
<section id="footer">
<div>
<a href="index.html">
<img class="footerlogo" src="img/kosfooterwhite.png">
</a>
<hr>
<div class="footergridcontainer">
<div class="footeritem"><a href="index.html">Home</a></div>
<div class="footeritem"><a href="author.html">Author</a></div>
<div class="footeritem"><a href="gamehistory.html">Game History</a></div>
<div class="footeritem"><a href="characters.html">Characters</a></div>
<div class="footeritem"><a href="restoration.html">Restoration</a></div>
<div class="footeritem"><a href="credits.html">Team</a></div>
</div>
<div class="socialgridcontainer">
<div class="socialitem"><a href="https://www.instagram.com/cmdc.dtc/" target="_blank"><img
src="img/instagram.png"></a></div>
<div class="socialitem"><a href="https://www.facebook.com/cmdc.dtc" target="_blank"><img
src="img/facebook.png"></a></div>
<div class="socialitem"><a href="https://twitter.com/CMDC_WSUV" target="_blank"><img
src="img/twitter.png"></a></div>
<div class="socialitem"><a href="https://www.tiktok.com/@kingofspace_restored" target="_blank"><img
src="img/tiktok.png"></a></div>
</div>
</div>
</section>
<!--End Section-->
<!--Copyright-->
<footer style="background-color: black;">
Copyright © 2022
</footer>
<!--End Section-->
<script>
/*
THIS IS NOT NECESSARY ON REGULAR WEBSITES
If you're using a library like React, you'll need the mobile menu to close once a link has been clicked.
That's all the below code does.
*/
const hamburgerButton = document.getElementById('hamburger-button');
const headerLinks = document.querySelectorAll('header .container .menu a');
headerLinks.forEach((link) => {
link.addEventListener('click', (e) => hamburgerButton.checked = false);
})
</script>
</body>
</html>