-
Notifications
You must be signed in to change notification settings - Fork 1
/
Index.html
68 lines (55 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage | Nebula</title>
<link rel="icon" href="/Assets/shared/logo.svg">
<link rel="stylesheet" href="/dist/style.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+Condensed&family=Bellefair&display=swap" rel="stylesheet">
</head>
<body>
<section class="home">
<div class="navbar">
<img src="/Assets/shared/logo.svg" alt="Nebula">
<div class="rect-design hide-for-mobile"></div>
<nav>
<div id="hamburger" class="hamburger hide-for-desktop">
<span></span>
<span></span>
<span></span>
</div>
<div id="hamburger-menu" class="hamburger-menu has-fade hide-for-desktop">
<a href="/">00 HOME</a>
<a href="/Pages/destination/destination-moon.html">01 DESTINATION</a>
<a href="/Pages/crew/crew.html">02 CREW</a>
<a href="/Pages/technology/technology.html">03 TECHNOLOGY</a>
</div>
<div class="nav-links hide-for-mobile">
<a class="link active" href="/">HOME</a>
<a class="link" href="/Pages/destination/destination-moon.html">DESTINATION</a>
<a class="link" href="/Pages/crew/crew.html">CREW</a>
<a class="link" href="/Pages/technology/technology.html">TECHNOLOGY</a>
</div>
</nav>
</div>
<div class="hero">
<div class="hero__text">
<span>SO, YOU WANT TO TRAVEL TO</span>
<h1>SPACE</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>
<div class="hero__img">
<a href="/Pages/destination/destination-moon.html">
<div class="circle__btn">
<span>EXPLORE</span>
</div>
</a>
</div>
</div>
</section>
<script src="/App/Script/script.js"></script>
</body>
</html>