-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (70 loc) · 2.06 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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/main.css" />
<link rel="stylesheet" href="./css/home.css" />
<script src="./js/app.js" defer></script>
<title>Space tourism</title>
</head>
<body>
<!-- Start Header -->
<header>
<div class="container">
<img src="./assets/shared/logo.svg" alt="Site Logo" class="logo" />
<div class="line"></div>
<nav>
<img src="./assets/shared/icon-close.svg" class="close-menu" alt="" />
<ul>
<li class="active">
<a href="./index.html"><b>00</b> Home</a>
</li>
<li>
<a href="./destination-moon.html"><b>01</b> Destination</a>
</li>
<li>
<a href="./crew-commander.html"><b>02</b> Crew</a>
</li>
<li>
<a href="./technology-vehicle.html"><b>03</b> Technology</a>
</li>
</ul>
</nav>
<img
src="./assets/shared/icon-hamburger.svg"
class="open-menu"
alt=""
/>
</div>
<div class="blure_back"></div>
</header>
<!-- End Header -->
<!-- Start Body Section -->
<section class="landing">
<div class="container">
<div class="content">
<h1>
So, you want to travel to
<br />
<span>Space</span>
</h1>
<p>
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>
<a href="./destination-moon.html">Explore</a>
</div>
</section>
<!-- End Body Section -->
</body>
</html>