-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
343 lines (339 loc) · 12.4 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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- normalize css -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- google fonts -->
<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=Sigmar+One&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Andada+Pro&display=swap"
rel="stylesheet"
/>
<!-- font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- link to css -->
<link
rel="stylesheet"
href="css/styles-for-tv.css"
media="screen and (min-device-width: 2000px)"
/>
<link
rel="stylesheet"
href="css/styles-for-computer.css"
media="screen and (max-device-width: 1999px)"
/>
<link
rel="stylesheet"
href="css/styles-for-tablet.css"
media="screen and (max-device-width: 1164px)"
/>
<link
rel="stylesheet"
href="css/styles-for-phone.css"
media="screen and (max-device-width: 767px)"
/>
<title>marsing!</title>
</head>
<body>
<!-- nav -->
<!-- .fixed-block -->
<header class="header">
<!-- .nav-title -->
<h2 class="header__title">Marsin'</h2>
<!-- .navbar -->
<ul class="header__navigation">
<!-- .item -->
<li class="header__link"><a href="#home">Home</a></li>
<li class="header__link"><a href="#about-us">About us</a></li>
<li class="header__link"><a href="#plans">Plans of the future</a></li>
<li class="header__link"><a href="#contacts">Contacts</a></li>
</ul>
<!-- .nav-icons -->
<div class="header__icons">
<!-- a -->
<a
title="Lets fly!"
href="https://en.wikipedia.org/wiki/Rocket"
target="_blank"
class="header__icon"
>
<!-- .fas .fa-rocket -->
<i class="fas fa-rocket header__rocket"></i>
</a>
<!-- a -->
<a
title="What do we take with us"
href="https://en.wikipedia.org/wiki/Astronaut"
target="_blank"
class="header__icon"
>
<!-- .fas .fa-user-astronaut -->
<i class="fas fa-user-astronaut header__astronaut"></i>
</a>
<!-- .nav-inside -->
<nav class="header__burger">
<!-- .fas .fa-caret-square-down -->
<i class="fas fa-align-justify header__burger-icon"></i>
<!-- main -->
<!-- .small-navbar -->
<div class="header__list">
<!-- a -->
<a class="header__item" href="#home">Home</a>
<a class="header__item" href="#about-us">About us</a>
<a class="header__item" href="#plans">Plans of the future</a>
<a class="header__item" href="#contacts">Contacts</a>
</div>
</nav>
</div>
</header>
<!-- .wrapper -->
<header id="home" class="wrapper">
<!-- .text-container -->
<div class="text-container">
<!-- .header-text -->
<p class="header-text">We are making a great discoveries</p>
<!-- .main-title -->
<h1 class="main-title">Marsin'</h1>
</div>
<!-- a -->
<a href="#forms">
<!-- .head-btn -->
<div class="head-btn">Start</div>
</a>
</header>
<!-- .block-container -->
<section class="block-container">
<!-- .right-card .big-card -->
<article id="about-us" class="right-card big-card">
<!-- .card-text -->
<p class="card-text">
In fact, rockets work more efficiently in the vacuum of space than in
an atmosphere. Multistage rockets are capable of attaining escape
velocity from Earth and therefore can achieve unlimited maximum
altitude. Compared with airbreathing engines, rockets are lightweight
and powerful and capable of generating large accelerations. To control
their flight, rockets rely on momentum, airfoils, auxiliary reaction
engines, gimballed thrust, momentum wheels, deflection of the exhaust
stream, propellant flow, spin, or gravity.
</p>
<!-- .card-img -->
<img class="card-img" src="images/rocket.webp" alt="rocket" />
</article>
<!-- .left-card .big-card -->
<article class="left-card big-card">
<!-- .card-img -->
<img class="card-img" src="images/space.webp" alt="space" />
<!-- .card-text -->
<p class="card-text">
"Astronaut" technically applies to all human space travelers
regardless of nationality or allegiance; however, astronauts fielded
by Russia or the Soviet Union are typically known instead as
cosmonauts (from the Russian "kosmos" (космос), meaning "space", also
borrowed from Greek) in order to distinguish them from American or
otherwise NATO-oriented space travellers. Comparatively recent
developments in manned spaceflight made by China have led to the rise
of the term taikonaut (from the Mandarin "tàikōng" (太空), meaning
"space"), although its use is somewhat informal and its origin is
unclear. In Mainland China, the People's Liberation Army Astronaut
Corps astronauts and their foreign counterparts are all officially
called hángtiānyuán (航天员, meaning "heaven navigator" or literally
"heaven-sailing staff").
</p>
</article>
<!-- .videos -->
<section class="videos">
<!-- iframe -->
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/TBikbn5XJhg"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
<!-- iframe -->
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/vvbN-cWe0A0"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</section>
<!-- .small-cards -->
<section id="plans" class="small-cards">
<!-- .photo-card -->
<div class="photo-card">
<!-- .small-card_photo -->
<img
class="small-card_photo"
src="images/asrogif1.gif"
alt="astronaut"
/>
<!-- h3 -->
<h3>Astronaut</h3>
<!-- .small-card_additional -->
<p class="small-card_additional">
is a person trained, equipped, and deployed by a human spaceflight
program to serve as a commander or crew member aboard a spacecraft.
Although generally reserved for professional space travelers, the
terms are sometimes applied to anyone who travels into space,
including scientists, politicians, journalists and tourists.
</p>
<!-- .before-content -->
<div class="before-content"></div>
</div>
<!-- .photo-card -->
<div class="photo-card">
<!-- .small-card_photo -->
<img
class="small-card_photo"
src="images/asrogif2.gif"
alt="astronaut"
/>
<!-- h3 -->
<h3>Definition</h3>
<!-- .small-card_additional -->
<p class="small-card_additional">
As of 17 November 2016, 552 people from 36 countries have reached
100 km (62 mi) or more in altitude, of whom 549 reached low Earth
orbit or beyond. Of these, 24 people have traveled beyond low Earth
orbit, either to lunar orbit, the lunar surface, or, in one case, a
loop around the Moon. Three of the 24—Jim Lovell, John Young and
Eugene Cernan—did so twice.
</p>
<!-- .before-content -->
<div class="before-content"></div>
</div>
<!-- .photo-card -->
<div class="photo-card">
<!-- .small-card_photo -->
<img
class="small-card_photo"
src="images/asrogif3.gif"
alt="astronaut"
/>
<!-- h3 -->
<h3>Parastronaut</h3>
<!-- .small-card_additional -->
<p class="small-card_additional">
For its 2022 Astronaut Group, ESA envisions recruiting an astronaut
with a physical disability, a category they called "parastronauts",
with the intention but not guarantee of spaceflight. The categories
of disability considered for the program were individuals with lower
limb deficiency (either through amputation or congenital), leg
length difference, or a short stature (less than 130 centimetres or
4 feet 3 inches)
</p>
<!-- .before-content -->
<div class="before-content"></div>
</div>
</section>
<!-- footer -->
<footer>
<!-- #forms -->
<aside id="forms">
<!-- h3 -->
<h3>Fly into space with us!</h3>
<!-- form -->
<form action="">
<!-- .form-input -->
<div class="form-input">
<!-- label -->
<label for="email">Your Email</label>
<!-- input -->
<input
type="email"
id="email"
name="email"
placeholder="[email protected]"
required
/>
</div>
<!-- .form-input -->
<div class="form-input">
<input type="radio" name="gender" id="male" checked required />
<!-- label -->
<label for="male">Male</label>
</div>
<!-- .form-input -->
<div class="form-input">
<!-- input -->
<input type="radio" name="gender" id="female" required />
<!-- label -->
<label for="female">Female</label>
</div>
<!-- .form-input -->
<div class="form-input">
<!-- input -->
<input type="checkbox" name="adult" id="adult" required />
<!-- label -->
<label for="adult">I have 18+ years old</label>
</div>
<!-- .form-submit -->
<div class="form-submit">
<!-- input -->
<input type="submit" value="AGREE" required />
</div>
</form>
</aside>
<!-- .contacts -->
<div class="contacts">
<!-- #contacts -->
<section id="contacts">
<!-- a -->
<a href="https://www.instagram.com/" target="_blank">
<!-- .fab .fa-instagram -->
<i class="fab fa-instagram"></i>
</a>
<!-- a -->
<a href="https://uk-ua.facebook.com/" target="_blank">
<!-- .fab .fa-facebook -->
<i class="fab fa-facebook"></i>
</a>
<!-- a -->
<a href="https://twitter.com/?lang=uk" target="_blank">
<!-- .fab .fa-twitter -->
<i class="fab fa-twitter"></i>
</a>
<!-- a -->
<a href="https://www.snapchat.com/" target="_blank">
<!-- .fab .fa-snapchat -->
<i class="fab fa-snapchat"></i>
</a>
</section>
<!-- h6 -->
<h6>©Marsin'</h6>
</div>
</footer>
</section>
</body>
</html>