-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestination.html
60 lines (58 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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&family=Bellefair&display=swap" rel="stylesheet">
<title>Space Tourism</title>
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<header>
<div class="destination">
<div class="header__menu">
<div class="header__menu--logo">
<img src="images/shared/logo.svg">
</div>
<div class="header__menu--list">
<ul>
<li>
<a href="index.html" >
<span>00</span> home
</a>
</li>
<li>
<a href="#" class="active">
<span>01</span> destination
</a>
</li>
<li>
<a href="">
<span>02</span> crew
</a>
</li>
<li>
<a href="">
<span>03</span> technology
</a>
</li>
</ul>
</div>
</div>
<div class="destination__info">
<div class="destination__info--label">
<p>
<label>
01
</label> Pick your destination
</p>
</div>
</div>
</div>
</header>
</body>
</html>