-
Notifications
You must be signed in to change notification settings - Fork 0
/
destination-europa.html
56 lines (49 loc) · 2.23 KB
/
destination-europa.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
<!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/index.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 class="destination">
<header class="header">
<img class="logo" src="assets\shared\logo.svg" alt="logo-img">
<class="header-line" hr>
<div class="header-list">
<a class="header-item" href = "index.html"><span>00</span> HOME</a>
<a class="header-item current" href="destination-moon.html"><span>01</span> DESTINATION</a>
<a class="header-item" href="crew-commander.html"><span>02</span> CREW</a>
<a class="header-item"href="technology-spaceport.html"><span>03</span> TECHNOLOGY</a>
</div>
</header>
<h3 class="destination-heading2"><span>01</span> PICK YOUR DESTINATION</h3>
<img class="moon-img" src="assets\destination\image-europa.webp" alt="europa-img">
<section class="about-moon">
<div class="small-header">
<a class="small-header-item" href="destination-moon.html">MOON</a>
<a class="small-header-item" href="destination-mars.html">MARS</a>
<a class="small-header-item current" href="destination-europa.html">EUROPA</a>
<a class="small-header-item"href="destination-titan.html">TITAN</a>
</div>
<h1 class="main-heading moon-heading">EUROPA</h1>
<p class="main-para moon-para">
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> <hr class="moon-hr" >
<table>
<tr>
<td>AVG. DISTANCE</td>
<td>Est. travel time</td>
</tr>
<tr>
<td>628 MIL. km</td>
<td>3 years</td>
</tr>
</table>
</section>
</body>
</html>