-
Notifications
You must be signed in to change notification settings - Fork 0
/
crew.html
100 lines (92 loc) · 3.72 KB
/
crew.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 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"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="index.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<title>Space tourism website</title>
</head>
<body class="crew">
<a class="skip-to-content" href="#main">Skip to content</a>
<header class="flex primary-header">
<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 aria-selected="false">
<a
href="index.html"
class="uppercase fs-400 ff-sans-cond text-light letter-spacing-2"
><span aria-hidden="true">00</span>Home</a
>
</li>
<li aria-selected="false">
<a
href="destination.html"
class="uppercase fs-400 ff-sans-cond text-light letter-spacing-2"
><span aria-hidden="true">01</span>Destination</a
>
</li>
<li aria-selected="true" class="active" >
<a
href="crew.html"
class="uppercase fs-400 ff-sans-cond text-light letter-spacing-2"
><span aria-hidden="true">02</span>Crew</a
>
</li>
<li aria-selected="false">
<a
href="technology.html"
class="uppercase fs-400 ff-sans-cond text-light letter-spacing-2"
><span aria-hidden="true">03</span>Technology</a
>
</li>
</ul>
</nav>
</header>
<main id="main" class="grid-container grid-container--crew flow">
<h1 class="numbered-title slideRight"><span aria-hidden="true">02</span> Meet your crew</h1>
<div class=" dot-indicators flex">
<button aria-selected="true" id="commander"><span class="sr-only">The commander</span></button>
<button aria-selected="false" id="specialist"><span class="sr-only">The mission specialist</span></button>
<button aria-selected="false" id="pilot"><span class="sr-only">The pilot</span></button>
<button aria-selected="false" id="engineer"><span class="sr-only">The crew engineer</span></button>
</div>
<article class="crew-info flow">
<header class="flow flow--space-small">
<h2 class="fs-600 ff-serif uppercase" id="role">Commander</h2>
<p class="fs-700 uppercase ff-serif" id="name">Douglas Hurley</p>
</header>
<p class="text-light" id="description">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>
<picture class="slideRight">
<source srcset="assets/crew/image-douglas-hurley.webp" id="webp-image" type="image/webp">
<img src="assets/crew/image-douglas-hurley.png" id="png-image" alt="Douglas Hurley">
</picture>
</main>
<!-- JS link -->
<script type="module" src="crew.js"></script>
</body>
</html>