-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestination.html
73 lines (63 loc) · 3.66 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
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">
<!-- Google fonts -->
<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:wght@400;700&family=Bellefair&family=Barlow:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./assets/index.css">
<title>Frontend Mentor | Space tourism website</title>
</head>
<body class="destination" data-title="destinations">
<a class="skip-to-content" href="#main">Skip to content</a>
<header class="primary-header flex">
<div>
<img class="logo" src="./assets/shared/logo.svg" alt="space tourism logo">
</div>
<button class="mobile-nav-toggle" aria-controls="primary-navigation"><span class="sr-only" aria-expanded="false">Menu</span></button>
<nav>
<ul id="primary-navigation" data-visible="false" class="primary-navigation underline-indicators flex">
<li><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="index.html"><span aria-hidden="true">00</span>Home</a>
<li class="active"><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="destination.html"><span aria-hidden="true">01</span>Destination</a>
<li><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="crew.html"><span aria-hidden="true">02</span>Crew</a>
<li><a class="ff-sans-cond uppercase text-white letter-spacing-2" href="technology.html"><span aria-hidden="true">03</span>Technology</a>
</ul>
</nav>
<div class="page-wrapper"></div>
</header>
<main id="main" class="grid-container grid-container--destination flow">
<h1 class="numbered-title"><span aria-hidden="true">01</span> Pick your destination</h1>
<picture>
<source id="destinations-images-2" srcset="./assets/destination/image-moon.webp">
<img id="destinations-images-1" src="./assets/destination/image-moon.png" alt="the destination">
</picture>
<div id="tab-list" class="tab-list underline-indicators flex">
<button id="button-0" aria-selected="false" class="uppercase ff-sans-cond text-accent letter-spacing-2">Moon</button>
<button id="button-1" aria-selected="false" class="uppercase ff-sans-cond text-accent letter-spacing-2">Mars</button>
<button id="button-2" aria-selected="false" class="uppercase ff-sans-cond text-accent letter-spacing-2">Europa</button>
<button id="button-3" aria-selected="false" class="uppercase ff-sans-cond text-accent letter-spacing-2">Titan</button>
</div>
<article class="destination-info flow">
<h2 id="destinations-name" class="uppercase fs-800 ff-serif">Moon</h2>
<p id="destinations-description" class="text-accent">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="destination-meta flex">
<div>
<h3 class="text-accent fs-200 uppercase">Avg. distance</h3>
<p id="destinations-distance" class="ff-serif uppercase">384,400 km</p>
</div>
<div>
<h3 class="text-accent fs-200 uppercase">Est. travel time</h3>
<p id="destinations-travel" class="ff-serif uppercase">3 days</p>
</div>
</div>
</article>
</main>
<script src="script.js"></script>
</body>
</html>