-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestination.html
117 lines (102 loc) · 5.11 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" sizes="32x32" href="/src/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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Travel to Space" content="Space Tourism, travel to space like any other vacation.">
<link rel="stylesheet" href="src/stylesheet.css">
<title>Destination Moon</title>
</head>
<body class="destination">
<header class="primary-header flex">
<div>
<img src="./src/assets/shared/logo.svg" alt="Space logo" class="logo">
</div>
<button class="mobile-nav"><span class="sr-only"aria-expanded="false"></span></button>
<nav>
<ul id="primary-navigation" data-visible="false" class="primary-navigation underline-indicators flex">
<li><a class="uppercase text-white letter-spacing-2" href="index.html"><span>01</span>Home</a>
<li class="active"> <a class="uppercase text-white letter-spacing-2" href="destination.html"><span>02</span>Destination</a>
</ul>
</nav>
</header>
<main id="main" class="grid-container grid-container--destination flow">
<h1 class="numbered-title">
<span aria-hidden="true">02</span>
Pick your Destination
</h1>
<div class="image">
<picture id="moon-img">
<img src="./src/assets/destination/image-moon.png" alt="the moon">
</picture>
<picture hidden id="mars-img">
<img src="./src/assets/destination/image-mars.png" alt="Mars">
</picture>
<picture hidden id="europa-img">
<img src="./src/assets/destination/image-europa.png" alt="Europa">
</picture>
</div>
<div id="tab-list" class="tab-list underline-indicators flex" role="tablist">
<button aria-selected="true"aria-controls="moon-tab" role="tab" class="uppercase ff-sans-cond text-accent letter-spacing-2" tabindex="0" data-image="moon-img">Moon</button>
<button aria-selected="false" role="tab" aria-controls="mars-tab" class="uppercase ff-sans-cond text-accent letter-spacing-2"tabindex="-1" data-image="mars-img">Mars</button>
<button aria-selected="false" role="tab" aria-controls="europa-tab" class="uppercase ff-sans-cond text-accent letter-spacing-2"tabindex="-1" data-image="europa-img">Europa</button>
</div>
<article id="moon-tab" class="destination-info" tabindex="0">
<h2 class="fs-800 uppercase ff-serif">Moon</h2>
<p class="ff-sans-normal">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 class="fs-500 ff-serif uppercase">384,400 km</p >
</div>
<div>
<h3 class="text-accent fs-200 uppercase">Est. travel time</h3>
<p class="ff-serif uppercase">3 days</p >
</div>
</div>
</article>
<article hidden id="mars-tab" class="destination-info"tabindex="0">
<h2 class="fs-800 uppercase ff-serif">Mars</h2>
<p class="ff-sans-normal">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 >
<div class="destination-meta flex">
<div>
<h3 class="text-accent fs-200 uppercase">Avg. distance</h3>
<p class="fs-500 ff-serif uppercase">225 mil. km</p >
</div>
<div>
<h3 class="text-accent fs-200 uppercase">Est. travel time</h3>
<p class="ff-serif uppercase">9 months</p >
</div>
</div>
</article>
<article hidden id="europa-tab" class="destination-info"tabindex="0" >
<h2 class="fs-800 uppercase ff-serif">Europa</h2>
<p class= "ff-sans-normal">The smallest of the four Galilean moons orbiting Jupiter, Europa is a
winter lover's dream. With an icy surface, it's perfect for a bit of
ice skating, curling, hockey, or simple relaxation in your snug
wintery cabin.</p >
<div class="destination-meta flex">
<div>
<h3 class="text-accent fs-200 uppercase">Avg. distance</h3>
<p class="fs-500 ff-serif uppercase">628 mil. km</p >
</div>
<div>
<h3 class="text-accent fs-200 uppercase">Est. travel time</h3>
<p class="ff-serif uppercase">3 year</p >
</div>
</div>
</article>
<script src="script.js"></script>
</body>
</html>