-
Notifications
You must be signed in to change notification settings - Fork 0
/
crew-specialist.html
43 lines (39 loc) · 1.97 KB
/
crew-specialist.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
<!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\index.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">
<title>Frontend Mentor | Space tourism website</title>
</head>
<body class="crew">
<header class="header">
<img class="logo" src="assets\shared\logo.svg" alt="logo-img">
<class="header-line" hr>
<div class="header-list">
<a class="header-item" href="index.html"><span>00</span> HOME</a>
<a class="header-item" href="destination-moon.html"><span>01</span> DESTINATION</a>
<a class="header-item current" href="crew-commander.html"><span>02</span> CREW</a>
<a class="header-item"href="technology-spaceport.html"><span>03</span> TECHNOLOGY</a>
</div>
</header>
<h3 class="crew-main-heading"><span>02</span> Meet your crew</h3>
<div class="crew-box">
<h3 class="crew-heading">Mission Specialist </h3>
<h4 class="crew-name">MARK<h4>
<p class="main-para">
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="circle-menu">
<a class="circle-item " href="crew-commander.html"></a>
<a class="circle-item" href="crew-engineer.html"></a>
<a class="circle-item" href="crew-pilot.html"></a>
<a class="circle-item curr-circle" href="crew-specialist.html"></a>
</div>
<img class="mark-img crew-img" src="assets\crew\image-mark-shuttleworth.webp" alt="crew-img">
</body>
</html>