-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDestinationPage.html
More file actions
84 lines (81 loc) · 2.73 KB
/
DestinationPage.html
File metadata and controls
84 lines (81 loc) · 2.73 KB
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
<!DOCTYPE html>
<html>
<head>
<Title>Home Page</Title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body >
<div class="container">
<nav id="navbar">
<div class="icon">
<i class="fa-sharp fa-solid fa-plane-circle-exclamation"></i>
</div>
<div style="width: 30%;" class="line">
<hr>
</div>
<ul class="nav-list">
<li class="items-list">
<a href="HomePage.html">Home</a>
</li>
<li class="items-list">
<a href="DestinationPage.html" style="border-bottom: 3px solid white;">Destination</a>
</li>
<li class="items-list">
<a href="CrewPage.html">Crew</a>
</li>
<li class="items-list">
<a href="TechnologyPage.html">Technology</a>
</li >
</ul>
</nav>
<br><br>
<div class="title">
<h3>Pick Your Distination</h3>
</div>
<br>
<br>
<br><br>
<div class="countries">
<li>
<a href="TechnologyPage.html">MOON</a>
</li>
<li>
<a href="TechnologyPage.html">MARS</a>
</li>
<li>
<a href="TechnologyPage.html">EUROPE</a>
</li>
<li>
<a href="TechnologyPage.html">TITAN</a>
</li>
</div>
<br>
<br><br>
<div class="content">
<div class="img1">
<img src="planet.png" alt="">
</div>
<div class="div-right">
<h1 >MARS</h1>
<p style="line-height: 35px; font-size: 25px;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus nihil deleniti incidunt dolores minima in quia sint soluta tempora voluptatem ad, fugit cupiditate nostrum enim quisquam iure ullam provident qui.</p>
<br>
<br>
<hr>
<div class="details">
<div>
<p>AVG. DISTANCE</p>
<h3>225 MIL. KM</h3>
</div>
<div>
<p>EST. TRAVEL TIME</p>
<h3>9 MONTHS</h3>
</div>
</div>
</div>
</div>
</div>
</body>
</html>