-
Notifications
You must be signed in to change notification settings - Fork 0
/
destination-mars.html
75 lines (72 loc) · 2.91 KB
/
destination-mars.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
74
75
<!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="destination-mars.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<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-mars.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_Mars">
<div class="imgMarsContainer">
<h3><span>01</span> Pick your destination</h3>
<img src="assets/destination/image-mars.webp">
</div>
<div class="textMarsContainer">
<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="aboveMarsContext_moon">
<hr class="aboveMarsContext_mars">
<hr class="aboveMarsContext_europa">
<hr class="aboveMarsContext_titan">
</nav>
<h1 class="marsContext">Mars</h1>
<p>Don’t forget to pack your hiking boots. You’ll need them to tackle Olympus Mons,
the tallest planetary mountain in our solar system. It’s two and a half times
the size of Everest!</p>
<hr class="behindMarsContext">
<div class="marsDistanceInfo">
<div class="avgDistance">
<h4>Avg. distance</h4>
<h1>225 mil. km</h1>
</div>
<div class="travelTime">
<h4>Est. travel time</h4>
<h1>9 months</h1>
</div>
</div>
</div>
</div>
</section>
<script src="destination-mars.js"></script>
</body>
</html>