-
Notifications
You must be signed in to change notification settings - Fork 0
/
destination-moon.html
73 lines (72 loc) · 2.81 KB
/
destination-moon.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
73
<!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="destination-moon.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>
<section id="destination">
<nav class="header">
<a href="index.html"><img src="assets/shared/logo.svg"></a>
<div class="navLinks">
<hr class="simpleLine">
<!-- <div> -->
<ul>
<li class="home"><a href="index.html">00 Home</a></li>
<li class="dest"><a href="destination-moon.html">01 Destination</a></li>
<li class="crew"><a href="crew-commander.html">02 Crew</a></li>
<li class="tech"><a href="technology-capsule.html">03 Technology</a></li>
</ul>
<!-- </div> -->
<hr class="effectLineHome">
<hr class="effectLineDest">
<hr class="effectLineCrew">
<hr class="effectLineTech">
</div>
</nav>
<div class="mainContainer_Destin_Moon">
<div class="imgMoonContainer">
<h3><span>01</span> Pick your destination</h3>
<img src="assets/destination/image-moon.webp">
</div>
<div class="textMoonContainer">
<nav>
<ul>
<li class="moon"><a href="destination-moon.html">MOON</a></li>
<li class="mars"><a href="destination-mars.html">MARS</a></li>
<li class="europa"><a href="destination-europa.html">EUROPA</a></li>
<li class="titan"><a href="destination-titan.html">TITAN</a></li>
</ul>
<hr class="aboveMoonContext_moon">
<hr class="aboveMoonContext_mars">
<hr class="aboveMoonContext_europa">
<hr class="aboveMoonContext_titan">
</nav>
<h1 class="moonContext">Moon</h1>
<p>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>
<hr class="behindMoonContext">
<div class="moonDistanceInfo">
<div class="avgDistance">
<h4>Avg. distance</h4>
<h1>384,400 km</h1>
</div>
<div class="travelTime">
<h4>Est. travel time</h4>
<h1>3 days</h1>
</div>
</div>
</div>
</div>
</section>
<script src="destination-moon.js"></script>
</body>
</html>