-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (93 loc) · 3.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="fonts.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Front Page</title>
</head>
<body>
<header class="header">
<div>
<img src="https://i.postimg.cc/Bvgj1rG2/Logo.png" alt="web-logo">
</div>
<nav class="nav-bar">
<ul>
<li><a class="nav-link" href="#">Home</a></li>
<li><a class="nav-link" href="#">About us</a></li>
<li><a class="nav-link" href="#">Destination</a></li>
<li><a class="nav-link" href="#">Tours</a></li>
<li><a class="nav-link" href="#">Blog</a></li>
</ul>
</nav>
<a class="nav" href="#">Book Now <img src="https://i.postimg.cc/RhzsWJ1P/Vector.jpg"></a>
</header>
<main>
<div>
<h1>Top Destinations</h1>
</div>
<div class="text">
<p>Sost Brilliant reasons Entrada should be your one-stop-shop!</p>
</div>
</main>
<div class="containter">
<p>London</p>
<p>Bangkok</p>
<p>England</p>
<p>Singapure</p>
<p>Italy</p>
</div>
<section class="gallery-grid">
<img class="first_image" src="https://i.postimg.cc/63B9JcTc/first.jpg" alt="Gallery Image">
<img class="second_image" src="https://i.postimg.cc/3wFTBG9v/second.jpg" alt="Gallery Image">
<img class="fifth_image" src="https://i.postimg.cc/gkbbf45Z/fifth.jpg" alt="Gallery Image">
<img class="sixth_image" src="https://i.postimg.cc/50QDrFSg/sixth.jpg" alt="Gallery Image">
<img class="fourth_image" src="https://i.postimg.cc/W1nVmr5J/fourth.jpg" alt="Gallery Image">
<img class="third_image" src="https://i.postimg.cc/tTv8SN6Y/third.jpg" alt="Gallery Image">
</section>
<footer>
<div>
<img src="https://i.postimg.cc/Bvgj1rG2/Logo.png">
<p>Enjoy the touring<br> with Salty</p>
</div>
<section class="containter">
<div>
<h3> Resources</h3>
<ul class="foot">
<li><p>Download</p></li>
<li><p>Help Center</p></li>
<li><p>Guide Book</p></li>
<li><p>App Direction</p></li>
</ul>
</div>
<div>
<h3> Travellers</h3>
<ul class="foot">
<li><p>Why Travellers</p></li>
<li><p>Enterprice</p></li>
<li><p>Customer Stories</p></li>
<li><p>Instagram post</p></li>
</ul>
</div>
<div>
<h3>Company</h3>
<ul class="foot">
<li><p>Travelling</p></li>
<li><p>About Locato</p></li>
<li><p>Success</p></li>
<li><p>Information</p></li>
</ul>
</div>
<div>
<h3> Get App</h3>
<ul class="foot">
<li><p>App Store</p></li>
<li><p>Google Play Store</p></li>
</ul>
</div>
</section>
</footer>
</body>
</html>