-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrew.html
More file actions
149 lines (121 loc) · 6.08 KB
/
Copy pathcrew.html
File metadata and controls
149 lines (121 loc) · 6.08 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
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
<!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">
<!-- 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=Barlow+Condensed:wght@400;700&family=Bellefair&family=Barlow:wght@400;700&display=swap"
rel="stylesheet">
<!-- Our custom CSS -->
<link rel="stylesheet" href="index.css">
<title>Frontend Mentor | Space tourism website</title>
<script src="tabs.js" defer></script>
<script src="navigation.js" defer></script>
</head>
<body class="crew">
<a class="skip-to-content" href="#main">Skip to 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"><span class="sr-only"
aria-expanded="false">Menu</span></button>
<nav>
<ul id="primary-navigation" data-visible="false" class="primary-navigation underline-indicators flex">
<li><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="index.html"><span
aria-hidden="true">00</span>Home</a>
<li><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="destination.html"><span
aria-hidden="true">01</span>Destination</a>
<li class="active"><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="crew.html"><span
aria-hidden="true">02</span>Crew</a>
<li><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="technology.html"><span
aria-hidden="true">03</span>Technology</a>
</ul>
</nav>
</header>
<main id="main" class="grid-container grid-container--crew flow">
<h1 class="numbered-title"><span aria-hidden="true">02</span>Meet your crew</h1>
<picture id="commander-image">
<source srcset="assets/crew/image-douglas-hurley.webp" type="image/webp">
<img src="assets/crew/image-douglas-hurley.png" alt="douglas hurley">
</picture>
<picture hidden id="engineer-image">
<source srcset="assets/crew/image-anousheh-ansari.webp" type="image/webp">
<img src="assets/crew/image-anousheh-ansari.png" alt="anousheh ansari">
</picture>
<picture hidden id="pilot-image">
<source srcset="assets/crew/image-victor-glover.webp" type="image/webp">
<img src="assets/crew/image-victor-glover.png" alt="victor glover">
</picture>
<picture hidden id="specialist-image">
<source srcset="assets/crew/image-mark-shuttleworth.webp" type="image/webp">
<img src="assets/crew/image-mark-shuttleworth.png" alt="mark shuttleworth">
</picture>
<div class="dot-indicators flex" role="tablist" aria-label="crew list">
<button aria-selected="true" class="active" tabindex="0" role="tab" aria-controls="commander-tab"
data-image="commander-image"> <span class="sr-only">The commander</span></button>
<button aria-selected="false" class="" tabindex="-1" role="tab" aria-controls="engineer-tab"
data-image="engineer-image"><span class="sr-only">The mission</span></button>
<button aria-selected="false" class="" tabindex="-1" role="tab" aria-controls="pilot-tab"
data-image="pilot-image"><span class="sr-only">The pilot</span></button>
<button aria-selected="false" class="" tabindex="-1" role="tab" aria-controls="specialist-tab"
data-image="specialist-image"><span class="sr-only">The engineer</span></button>
</div>
<!-- Hurley -->
<article class="crew-details flow" id="commander-tab" tabindex="0" role="tabpanel">
<header class="flow flow--space-small">
<h3 class="fs-600 uppercase ff-serif">Commander</h3>
<h2 class="fs-700 uppercase ff-serif">Douglas Hurley</h2>
</header>
<p class="text-accent">
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>
</article>
<!-- Ansari -->
<article hidden class="crew-details flow" id="engineer-tab" tabindex="0" role="tabpanel">
<header class="flow flow--space-small">
<h3 class="fs-600 uppercase ff-serif">Flight Engineer
</h3>
<h2 class="fs-700 uppercase ff-serif">Anousheh Ansari</h2>
</header>
<p class="text-accent">
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>
</article>
<!-- Glover -->
<article hidden class="crew-details flow" id="pilot-tab" tabindex="0" role="tabpanel">
<header class="flow flow--space-small">
<h3 class="fs-600 uppercase ff-serif">Pilot
</h3>
<h2 class="fs-700 uppercase ff-serif">Victor Glover</h2>
</header>
<p class="text-accent">
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>
</article>
<!-- Mark -->
<article hidden class="crew-details flow" id="specialist-tab" tabindex="0" role="tabpanel">
<header class="flow flow--space-small">
<h3 class="fs-600 uppercase ff-serif">Mission Specialist</h3>
<h2 class="fs-700 uppercase ff-serif">Mark Shuttleworth</h2>
</header>
<p class="text-accent">
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>
</article>
</main>
</body>
</html>