forked from Anburaj07/Travelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
203 lines (131 loc) · 6 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="apple-touch-icon" sizes="180x180" href="./IMAGES/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./IMAGES/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./IMAGES/favicon-16x16.png">
<link rel="manifest" href="./IMAGES/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="./style/index.css">
<script src="https://code.jquery.com/jquery-3.5.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js" integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script>
$(function(){
$("#header").load("index_header.html");
$("#bottom").load("bottomservices.html");
$("#bottom2").load("review.html");
$("#footer").load("user_footer.html");
});
</script>
</head>
<body>
<!-- navigation bar starts here -->
<header id="header"></header>
<!-- navigation bar ends here -->
<div class="banner">
<div class="bg bg-1"></div>
<div class="bg bg-2"></div>
<div class="bg bg-3"></div>
<h1>Travelo!</h1>
<div class="bg bg-4"></div>
<div class="bg bg-5"></div>
<div class="bg bg-6"></div>
<div class="bg bg-7"></div>
<div class="bg bg-8"></div>
<div class="bg bg-9"></div>
</div>
<div class="tab intro">
<h2 class="animation-show" id="link1">Travelo</h2>
<img src="IMAGES/img/navlogo.PNG" alt="" class="animation-show">
<p class="animation-show" >
Welcome to the Travelo . Here, we share our commitment to promoting sustainable and responsible tourism through the power of technology. Our open-source projects aim to create innovative tools that make it easier for ecotourism enthusiasts to find sustainable travel experiences and learn about environmental conservation. We believe that collaboration and technology can be powerful tools in promoting sustainable tourism, and we invite you to join us in our mission to protect the planet through responsible travel.
</p>
<button class="animation-show" id="submit">Subcribe</button>
</div>
<section>
<div id="planeimg">
<img src="https://i.pinimg.com/originals/bd/ba/9b/bdba9b09e40bc2eb4281078049263d08.gif" alt="">
</div>
<div class="bottoncard">
<h2>Discover the touch of Nature</h2>
</div>
</section>
<button onclick="topFunction()" id="myBtn" title="top">^</button>
<div class="tab library">
<div class="animation-show">
<a href="destination.html"> <img src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/1d/f8/1c/13/padma-resort-ubud.jpg?w=900&h=500&s=1">
</a>
<p>Indonesia</p>
</div>
<div class="animation-show">
<a href="destination.html"> <img src="https://static.toiimg.com/photo/93246451.cms">
</a>
<p>Himachal</p>
</div>
<div class="animation-show">
<a href="destination.html">
<img src="https://www.trawell.in/blog/wp-content/uploads/2021/11/Nagaon_Beach_Main.jpg">
</a>
<p>Gujrat</p>
</div>
<div class="animation-show">
<a href="destination.html">
<img src="https://media.tacdn.com/media/attractions-splice-spp-674x446/07/be/eb/fc.jpg">
</a>
<p>Maharastra</p>
</div>
</div>
<section>
<div class="bottoncard2"><h1 > What Services<br> we Provide</h1>
</div>
<div id="bottom"></div>
<!--
<div class="litdiv">
<ol type="1">
<li> <h2>Travle Plan</h2> <br>Get a grate deals in your holiday bookings </li><br>
<li><h2>Flights Booking</h2><br> get a disscount in your first flight ticket</li><br>
<li><h2>Accomodation</h2><br>disscount in your first flight ticket
</li><br>
</ol>
</div> -->
</section>
<div class="bottoncard"><h1 > Plan easy,Pay less & <br>experience more</h1>
</div>
<div id="bottom2"></div>
<!-- footer section starts here -->
<div id="footer"></div>
<!-- footer section ends here -->
<script>
$(document).ready(function() {
$("a.scrollLink").click(function(event) {
event.preventDefault();
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top
}, 500);
});
});
// Get the button:
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
</script>
<script src="./script/app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-zYPOMqeu1DAVkHiLqWBUTcbYfZ8osu1Nd6Z89ify25QV9guujx43ITvfi12/QExE" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-Y4oOpwW3duJdCWv5ly8SCFYWqFDsfob/3GkgExXKV4idmbt98QcxXYs9UoXAB7BZ" crossorigin="anonymous"></script>
</body>
</html>