-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrew.html
More file actions
109 lines (98 loc) · 5.72 KB
/
crew.html
File metadata and controls
109 lines (98 loc) · 5.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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@100;200&family=Barlow:wght@100;200;400&family=Bellefair&display=swap" rel="stylesheet"> <!-- <link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;400&display=swap" rel="stylesheet"> -->
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<body>
<section class="crews">
<nav class="navbar">
<div class="hero__logo"><img src="/img/Group2.png" alt="LOGO"></div>
<span class="hero__span"> </span>
<div class="hamburger--rmv">
<svg class="hamburgers "><img src="./img/remove.svg" alt="Hamburger"></svg>
</div>
<div class="hamburger">
<svg class="hamburgers"><img src="./img/hamburger.svg" alt="Hamburger"></svg>
</div>
<div class="navbar__right">
<ul class="navbar__list">
<li class="navbar__list--00"> <a class="navbar__list--link" href="index.html"><span class="u-margin-right">00</span>HOME</a></li>
<li class="navbar__list--01"> <a class="navbar__list--link" href="destination.html"><span class="u-margin-right">01</span>DESTINATION</a></li>
<li class="navbar__list--02"> <a class="navbar__list--link" href="crew.html"><span class="u-margin-right">02</span>CREW</a></li>
<li class="navbar__list--03"> <a class="navbar__list--link" href="technology.html"><span class="u-margin-right">03</span>TECHNOLOGY</a></li>
</ul>
</div>
</nav>
<input type="radio" name="radio-btn" id="radio1">
<input type="radio" name="radio-btn" id="radio2">
<input type="radio" name="radio-btn" id="radio3">
<input type="radio" name="radio-btn" id="radio4">
<section class="crew crew__active">
<div class="crew__left">
<div class="crew__pick">02 <span class="crew__pick--content">MEET YOUR CREW</span></div>
<div class="crew__content">
<p class="crew__title">COMMANDER</p>
<p class="crew__name">DOUGLAS HURLEY</p>
<p class="crew__typography">Douglas Gerald Hurley is an American engineer, former Marine Corps pilot and former NASA astronaut. He launched into space for the third time as commander of Crew Dragon Demo-2.</p>
</div>
</div>
<div class="crew__right">
<img src="img/human1.png" alt="DOUGLAS">
</div>
</section>
<section class="crew">
<div class="crew__left">
<div class="crew__pick">02 <span class="crew__pick--content">MEET YOUR CREW</span></div>
<div class="crew__content">
<p class="crew__title">MISSION SPECIALIST</p>
<p class="crew__name">MARK SHUTTLEWORTH</p>
<p class="crew__typography">Mark Richard Shuttleworth is the founder and CEO of Canonical, the company behind the Linux-based Ubuntu operating system. Shuttleworth became the first South African to travel to space as a space tourist.</p>
</div>
</div>
<div class="crew__right">
<img src="img/mark.png" alt="MARK">
</div>
</section>
<section class="crew">
<div class="crew__left">
<div class="crew__pick">02 <span class="crew__pick--content">MEET YOUR CREW</span></div>
<div class="crew__content">
<p class="crew__title">PILOT</p>
<p class="crew__name">VICTOR GLOVER</p>
<p class="crew__typography">Pilot on the first operational flight of the SpaceX Crew Dragon to the International Space Station. Glover is a commander in the U.S. Navy where he pilots an F/A-18.He was a crew member of Expedition 64, and served as a station systems flight engineer. </p>
</div>
</div>
<div class="crew__right" style="margin-top: 1.5rem;">
<img src="img/glover.png" alt="VICTOR">
</div>
</section>
<section class="crew">
<div class="crew__left">
<div class="crew__pick">02 <span class="crew__pick--content">MEET YOUR CREW</span></div>
<div class="crew__content">
<p class="crew__title">FLIGHT ENGINEER</p>
<p class="crew__name">ANOUSHEH ANSARI</p>
<p class="crew__typography">Anousheh Ansari is an Iranian American engineer and co-founder of Prodea Systems. Ansari was the fourth self-funded space tourist, the first self-funded woman to fly to the ISS, and the first Iranian in space. </p>
</div>
</div>
<div class="crew__right" style="margin-top: 5.9rem;">
<img src="img/image-removebg-preview(265).png" alt="DOUGLAS">
</div>
</section>
<div class="manual-nav">
<label for="radio1" class="manual-btn btn--active"></label>
<label for="radio2" class="manual-btn"></label>
<label for="radio3" class="manual-btn"></label>
<label for="radio4" class="manual-btn"></label>
</div>
</section>
<script src="app.js"></script>
</body>
</html>