-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (124 loc) · 3.98 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vacation Packages & Trips</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
</head>
<body>
<header>
<a class="logo" href="">PANDORA <span>TOUR</span></a>
<nav class="navbar">
<a href="">Home</a>
<a href="">About</a>
<a href="">Tour Packages</a>
<a href="">Contact</a>
</nav>
<div class="header-right">
<a href="">Follow Us</a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""><i class="ri-twitter-x-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
</div>
<div class="menu-item">
<i class="ri-menu-line"></i>
</div>
</header>
<section class="home">
<div class="home-text">
<h5 class="main-text">TRIP PLANNER</h5>
<h1>
Let Plan Your Next Adventure
</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Alias
quisquam repellendus voluptatem eveniet vero hic possimus laudantium
aliquam minima odio.
</p>
<a class="btn" href="">Book Now</a>
</div>
</section>
<section class="holiday">
<div class="holiday-image">
<img
src="img/bali.jpeg"
alt=""
/>
</div>
<div class="holiday-text">
<h5 class="main-text">Your Bali Vacation</h5>
<h2>Plan, book, travel with confidence</h2>
<p>
At the heart of Indonesia, the beautiful island of Bali is a melting
pot of cultures and a medley of stunning landscapes. From the lush
rice paddies and ancient temples in Ubud to the active Mount Batur
volcano and the golden beaches and iconic surf spots in Kuta, there is
something for everyone here. Build a Bali family vacation package for
the kids to learn all about Indonesian culture while you kick back on
the beach in the sunshine. Or for a luxury Bali vacation package,
consider hopping between a few of the island’s finest five-star hotels
to see the highlights in style.
</p>
<a class="btn" href="">More..</a>
</div>
</section>
<section class="tour">
<h2>Explore other types of vacation packages</h2>
<div class="tour-content">
<div class="box">
<img src="img/3-punta-cana-getty.jpg" alt="" />
<h6>Seychelles</h6>
<h4>Beach Vacations</h4>
</div>
<div class="box">
<img src="img/golf3.jpg" alt="" />
<h6>England</h6>
<h4>Golf Vacations</h4>
</div>
<div class="box">
<img src="img/p015st26-720.jpg" alt="" />
<h6>Cruise</h6>
<h4>Luxury Vacations</h4>
</div>
<div class="box">
<img
src="img/Best-things-to-do-in-New-Zealand-Skydiving.webp"
alt=""
/>
<h6>Dubai</h6>
<h4>Adventure Vacations</h4>
</div>
</div>
<div class="btn-center">
<a class="btn" href="">View Tours</a>
</div>
</section>
<footer>
<div class="footer-col">
<h3>Company</h3>
<a href="">About</a>
<a href="">Advertising</a>
<a href="">Feedback</a>
</div>
<div class="footer-col">
<h3>Policies</h3>
<a href="">Privacy</a>
<a href="">Terms of use</a>
<a href="">Accessibility</a>
</div>
<div class="footer-col">
<h3>Social</h3>
<div class="social">
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""><i class="ri-twitter-x-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
</div>
</div>
</footer>
</body>
</html>