-
Notifications
You must be signed in to change notification settings - Fork 0
/
crew.html
63 lines (62 loc) · 2.17 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
<!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-styles.css" />
<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"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<title>Space Tourism</title>
</head>
<body>
<div class="container">
<div class="navbar">
<img class="logo" src="./assets/shared/logo.svg" alt="logo" />
<div class="line"></div>
<nav>
<a href="./index.html"><span>00 </span> Home</a>
<a href="./destination-moon.html"><span>01 </span> Destination</a>
<a href="./crew.html"><span>02 </span> Crew</a>
<a href="./technology.html"><span>03 </span> Technology</a>
</nav>
</div>
<div class="crew">
<p class="crew-line">
<span class="number">02</span>
MEET YOUR CREW
</p>
<h1 class="post">COMMANDER</h1>
<h1 class="name">DOUGLAS HURLEY</h1>
<p id="post-info">
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 class="dot-bar">
<a onclick="douglas()" class="dot douglas" href="#"></a>
<a onclick="mark()" class="dot douglas" href="#"></a>
<a onclick="victor()" class="dot douglas" href="#"></a>
<a onclick="anousheh()" class="dot douglas" href="#"></a>
</div>
</div>
<div class="person-img">
<img
class="portrait"
src="./assets/crew/image-douglas-hurley.png"
alt=""
/>
</div>
</div>
<script src="./crew.js"></script>
</body>
</html>