-
Notifications
You must be signed in to change notification settings - Fork 0
/
technology.html
193 lines (189 loc) · 6.12 KB
/
technology.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<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=Barlow+Condensed:wght@400;700&family=Bellefair&family=Barlow:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
<title>Space Tourism</title>
</head>
<body class="technology">
<a class="skip-to-content" href="#main">Skip to main content </a>
<header class="primary-header flex">
<div>
<img
src="./assets/shared/logo.svg"
alt="Space Tourism Logo"
class="logo"
/>
</div>
<button
class="mobile-nav-toggle"
aria-controls="primary-navigation"
aria-expanded="false"
>
<span class="sr-only">Menu</span>
</button>
<nav>
<ul
id="primary-navigation"
data-visible="false"
class="primary-navigation underline-indicators flex ff-sans-cond"
>
<li>
<a href="index.html" class="uppercase letter-spacing-2 text-white"
><span aria-hidden="true">00</span> Home</a
>
</li>
<li>
<a
href="destination.html"
class="uppercase letter-spacing-2 text-white"
><span aria-hidden="true">01</span> Destination</a
>
</li>
<li>
<a href="crew.html" class="uppercase letter-spacing-2 text-white"
><span aria-hidden="true">02</span> Crew</a
>
</li>
<li class="active">
<a
href="technology.html"
class="uppercase letter-spacing-2 text-white"
><span aria-hidden="true">03</span> Technology</a
>
</li>
</ul>
</nav>
</header>
<main id="main" class="grid-container grid-container--technology flow">
<h1 class="numbered-title">
<span aria-hidden="true">03</span> Space launch 101
</h1>
<picture id="launch-vehicle-image">
<img
src="assets/technology/image-launch-vehicle-landscape.jpg"
alt="launch vehicle"
/>
</picture>
<picture id="spaceport-image" hidden>
<img
src="assets/technology/image-spaceport-landscape.jpg"
alt="launch vehicle"
/>
</picture>
<picture id="space-capsule-image" hidden>
<img
src="assets/technology/image-space-capsule-landscape.jpg"
alt="launch vehicle"
/>
</picture>
<div
role="tablist"
aria-label="technology list"
class="numbered-indicators flex"
>
<button
aria-selected="true"
aria-controls="launch-vehicle-tab"
tabindex="0"
role="tab"
data-image="launch-vehicle-image"
class="ff-serif fs-600 text-white"
>
1</button
><button
aria-selected="false"
aria-controls="space-port-tab"
tabindex="-1"
role="tab"
data-image="spaceport-image"
class="ff-serif fs-600 text-white"
>
2</button
><button
aria-selected="false"
aria-controls="space-capsule-tab"
tabindex="-1"
role="tab"
data-image="space-capsule-image"
class="ff-serif fs-600 text-white"
>
3
</button>
</div>
<!-- launch vehicle -->
<article
tabindex="0"
role="tabpanel"
id="launch-vehicle-tab"
class="technology-details flow text-light"
>
<header class="flow flow--space-small">
<p class="fs-400 ff-sans-cond uppercase">The terminology...</p>
<h2 class="fs-700 uppercase ff-serif text-white">Launch Vehicle</h2>
</header>
<p>
A launch vehicle or carrier rocket is a rocket-propelled vehicle used
to carry a payload from Earth's surface to space, usually to Earth
orbit or beyond. Our WEB-X carrier rocket is the most powerful in
operation. Standing 150 metres tall, it's quite an awe-inspiring sight
on the launch pad!
</p>
</article>
<!-- spaceport -->
<article
tabindex="0"
role="tabpanel"
id="space-port-tab"
class="technology-details flow text-light"
hidden
>
<header class="flow flow--space-small">
<p class="fs-400 ff-sans-cond uppercase">The terminology...</p>
<h2 class="fs-700 uppercase ff-serif text-white">Spaceport</h2>
</header>
<p>
A spaceport or cosmodrome is a site for launching (or receiving)
spacecraft, by analogy to the seaport for ships or airport for
aircraft. Based in the famous Cape Canaveral, our spaceport is ideally
situated to take advantage of the Earth’s rotation for launch.
</p>
</article>
<!-- space capsule -->
<article
tabindex="0"
role="tabpanel"
id="space-capsule-tab"
class="technology-details flow text-light"
hidden
>
<header class="flow flow--space-small">
<p class="fs-400 ff-sans-cond uppercase">The terminology...</p>
<h2 class="fs-700 uppercase ff-serif text-white">Space capsule</h2>
</header>
<p>
A space capsule is an often-crewed spacecraft that uses a blunt-body
reentry capsule to reenter the Earth's atmosphere without wings. Our
capsule is where you'll spend your time during the flight. It includes
a space gym, cinema, and plenty of other activities to keep you
entertained.
</p>
</article>
</main>
<script src="nav.js"></script>
<script src="content-change.js"></script>
</body>
</html>