-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.67 KB
/
index.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
<!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="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="intro">
<p>
<span class="intro-1">SO, YOU WANT TO TRAVEL TO</span>
<br />
<span class="space">SPACE</span> <br />
Let’s face it; if you want to go to space, you might as well genuinely
go to outer space and not hover kind of on the edge of it. Well sit
back, and relax because we’ll give you a truly out of this world
experience!
</p>
</div>
<div class="explore">
<p><a href="./destination-moon.html">EXPLORE</a></p>
</div>
</div>
</body>
</html>