-
Notifications
You must be signed in to change notification settings - Fork 0
/
destination-moon.html
65 lines (63 loc) · 2.25 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
<!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/destination.css">
<title>Frontend Mentor | Space tourism website</title>
</head>
<body>
<nav class = "navbar">
<div class="logo">
<a href = "./index.html"><img src="./assets/shared/logo.svg" alt="logo"></a>
</div>
<div class="toggle">
<img src="./assets/shared/icon-hamburger.svg" class = "ham" alt="icon-hamburger">
<img src="./assets/shared/icon-close.svg" class = "close" alt="icon-close">
</div>
<div class="tabs">
<div class="line"></div>
<ul>
<li><strong>00</strong><a href = "./index.html">home</a></li>
<li><strong>01</strong><a href = "./destination-moon.html">destination</a></li>
<li><strong>02</strong><a href = "./crew-commander.html">crew</a></li>
<li><strong>03</strong><a href = "./technology-vehicle.html">technology</a></li>
</ul>
</div>
</nav>
<section class = "destinations">
<div class="col1">
<h3><strong>01</strong>Pick your destination</h3>
<div class="dest-pic">
<img src="./assets/destination/image-moon.png" alt="Image-Moon">
</div>
</div>
<div class="col2">
<ul class = "sub-nav">
<li><a href = "./destination-moon.html">Moon</a></li>
<li><a href = "./destination-mars.html">Mars</a></li>
<li><a href = "./destination-europa.html">Europa</a></li>
<li><a href = "./destination-titan.html">Titan</a></li>
</ul>
<h1>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>
<div class="foot">
<div class="foot1">
<h6>Avg. distance</h6>
<h3>384,400 km</h3>
</div>
<div class="foot1">
<h6>Est. travel time</h6>
<h3>3 days</h3>
</div>
</div>
</div>
</section>
<script src="./js/destination.js"></script>
</body>
</html>