-
Notifications
You must be signed in to change notification settings - Fork 0
/
crew-commander.html
51 lines (50 loc) · 2.05 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
<!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">
<link rel="stylesheet" href="./css/crew.css">
<title>Frontend Mentor | Space tourism website</title>
</head>
<body>
<nav class = "navbar">
<div class="logo">
<a href = "./index.html"><img src="./assets/shared/logo.svg" alt="logo"></a>
</div>
<div class="toggle">
<img src="./assets/shared/icon-hamburger.svg" class = "ham" alt="icon-hamburger">
<img src="./assets/shared/icon-close.svg" class = "close" alt="icon-close">
</div>
<div class="tabs">
<div class="line"></div>
<ul>
<li><strong>00</strong><a href = "./index.html">home</a></li>
<li><strong>01</strong><a href = "./destination-moon.html">destination</a></li>
<li><strong>02</strong><a href = "./crew-commander.html">crew</a></li>
<li><strong>03</strong><a href = "./technology-vehicle.html">Technology</a></li>
</ul>
</div>
</nav>
<section class = "crew">
<div class="info">
<h3><strong>02</strong>Meet your crew</h3>
<h2>Commander</h2>
<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 class="sub-nav">
<div class="tab"><a href = "./crew-commander.html"><div class = "circle" style = "background-color: white;"></div></a></div>
<div class="tab"><a href = "./crew-specialist.html"><div class="circle"></div></a></div>
<div class="tab"><a href = "./crew-pilot.html"><div class="circle"></div></a></div>
<div class="tab"><a href = "./crew-engineer.html"><div class="circle"></div></a></div>
</div>
</div>
<div class="pic">
<img src="./assets/crew/image-douglas-hurley.png" alt="image-douglas-hurley">
</div>
</section>
<script src="./js/crew.js"></script>
</body>
</html>