-
Notifications
You must be signed in to change notification settings - Fork 0
/
crew-commander.html
95 lines (95 loc) · 3.94 KB
/
crew-commander.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="crew-commander.css">
<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&family=Barlow+Condensed&family=Bellefair&display=swap"
rel="stylesheet">
<title>Frontend Mentor | Space tourism website</title>
</head>
<body>
<section id="crew">
<nav class="header">
<a href="index.html"><img src="assets/shared/logo.svg"></a>
<div class="navLinks">
<hr class="simpleLine">
<!-- <div> -->
<ul>
<li class="home"><a href="index.html">00 Home</a></li>
<li class="dest"><a href="destination-moon.html">01 Destination</a></li>
<li class="crew"><a href="crew-commander.html">02 Crew</a></li>
<li class="tech"><a href="technology-capsule.html">03 Technology</a></li>
</ul>
<!-- </div> -->
<hr class="effectLineHome">
<hr class="effectLineDest">
<hr class="effectLineCrew">
<hr class="effectLineTech">
</div>
</nav>
<div class="crewMembers">
<h3><span>02</span> Meet your crew</h3>
<div id="commander">
<div class="commanderInfo">
<h4>Commander</h4>
<h1>Douglas Hurley</h1>
<p>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 class="commanderImg">
<img src="assets/crew/image-douglas-hurley.webp">
</div>
</div>
<div id="engineer">
<div class="engineerInfo">
<h4>Flight Engineer</h4>
<h1>Anousheh Ansari</h1>
<p>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 class="engineerImg">
<img src="assets/crew/image-anousheh-ansari.webp">
</div>
</div>
<div id="pilot">
<div class="pilotInfo">
<h4>Pilot</h4>
<h1>Victor Glover</h1>
<p>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 class="pilotImg">
<img src="assets/crew/image-victor-glover.webp">
</div>
</div>
<div id="specialist">
<div class="specialistInfo">
<h4>Mission Specialist</h4>
<h1>Mark Shuttleworth</h1>
<p>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 class="specialistImg">
<img src="assets/crew/image-mark-shuttleworth.webp">
</div>
</div>
</div>
<div class="indicators">
<button type="button" class="commander"></button>
<button type="button" class="engineer"></button>
<button type="button" class="pilot"></button>
<button type="button" class="specialist"></button>
</div>
</section>
<script src="crew-commander.js"></script>
</body>
</html>