-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestination.html
60 lines (58 loc) · 3.64 KB
/
destination.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;400&family=Bellefair&display=swap">
<title>Destination</title>
</head>
<body id="destin-bcg">
<header class=" header display-flex gap-2 justify-space-between align-items-center">
<img src="./assets/shared/logo.svg" alt="">
<img src="./assets/shared/icon-hamburger.svg" alt="hamburger icon" class="hamburger-btn">
<nav class="margin-left-auto navigation blured-nav-bg">
<ul class="display-flex gap-2 flex-clmn">
<li class="fw-100"><a href="./index.html" class="uppercase underline"><b class="header-numbers">00</b> Home</a></li>
<li class="fw-100"><a href="./destination.html" class="uppercase underline active"><b class="header-numbers">01</b> Destination</a></li>
<li class="fw-100"><a href="./crew.html" class="uppercase underline"><b class="header-numbers">02</b> Crew</a></li>
<li class="fw-100"><a href="./technology.html" class="uppercase underline"><b class="header-numbers">03</b> Technology</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="uppercase fw-100 fs-500 margin-btm-3 h1-margin-left margin-top-3"><span class="clr-light">01</span> Pick your destination</h1>
<div class="display-grid gap-desktop margin-top-4 margin-btm-3">
<div class="img-part display-flex align-items-center justify-content-center">
<img src="./assets/destination/image-moon.webp" alt="moon image" class="destination-img mobile-img-width">
</div>
<div class="text-part">
<nav>
<ul class="display-flex gap-2 justify-content-center">
<li class="fw-100"><a class="destination uppercase active-destination">Moon</a></li>
<li class="fw-100"><a class="destination uppercase">Mars</a></li>
<li class="fw-100"><a class="destination uppercase">Europa</a></li>
<li class="fw-100"><a class="destination uppercase">Titan</a></li>
</ul>
</nav>
<h2 class="destination-place margin-btm-1 margin-top-3 ff-serif fs-800 fw-100 uppercase">Moon</h2>
<p class="btm-line description main-p fw-100 clr-light text-width">See our planet as you’ve never seen it before. A perfect relaxing trip away to help regain perspective and come back refreshed. While you’re there, take in some history by visiting the Luna 2 and Apollo 11 landing sites.</p>
<div class="justify-content-center display-flex"><div class="destination-underline"></div></div>
<div class="numbers-info justify-content-center display-flex gap-2">
<div>
<p class="uppercase numbers-heading fw-100">Avg. distance</p>
<p class="uppercase numbers-value ff-serif distance">384,400 km</p>
</div>
<div>
<p class="uppercase numbers-heading fw-100">Est. travel time</p>
<p class="uppercase numbers-value ff-serif travel">3 days</p>
</div>
</div>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>