-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
465 lines (419 loc) · 16.1 KB
/
Copy pathindex.html
File metadata and controls
465 lines (419 loc) · 16.1 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<!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">
<title>TravelSphere</title>
<link rel="icon" href="./files/newlogo.png">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<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=Paytone+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<style>
/* ====== Location Section Styles (moved from inline) ====== */
section.locations {
text-align: center;
padding: 50px 20px;
background-color: #f8f8f8;
}
.package-title {
margin-bottom: 30px;
}
.package-title h2 {
font-size: 2.5rem;
font-weight: 600;
color: #333;
}
/* Card Container Styling */
.card-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-top: 30px;
}
/* 3D Flip Card Styling */
.card-3d {
perspective: 1000px;
width: 300px;
height: 400px;
}
.card-3d-inner {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.8s ease;
}
.card-3d:hover .card-3d-inner {
transform: rotateY(180deg);
}
.card-3d-front,
.card-3d-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
overflow: hidden;
}
.card-3d-front img {
width: 100%;
height: 100%;
object-fit: cover;
}
.card-3d-back {
background: rgba(0, 0, 0, 0.85);
transform: rotateY(180deg);
color: white;
padding: 20px;
}
.card-3d-back h5 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.card-3d-back p {
font-size: 1rem;
line-height: 1.5;
text-align: center;
}
/* Button Styling */
.explore-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: #ff5722;
color: white;
text-decoration: none;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
transition: background 0.3s;
}
.explore-button:hover {
background: #e64a19;
}
/* Ensure Cards Don't Overlap */
.card-container > div {
flex: 0 1 calc(25% - 20px);
box-sizing: border-box;
}
@media screen and (max-width: 768px) {
.card-container > div {
flex: 0 1 calc(50% - 20px);
}
}
@media screen and (max-width: 480px) {
.card-container > div {
flex: 0 1 100%;
}
}
</style>
</head>
<body>
<!-- Background Video & Header -->
<div class="banner">
<video src="./files/bgvid.mp4" type="video/mp4" autoplay muted loop></video>
<!-- Header -->
<div class="content" id="home">
<nav>
<img src="./files/newlogo.png" class="logo" alt="Logo" title="TravelSphere">
<ul class="navbar">
<li><a href="#home">Home</a></li>
<li><a href="#locations">Locations</a></li>
<li><a href="#package">Packages</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="/PHP_Files/contact.php">Contact Us</a></li>
</ul>
</nav>
<div class="title">
<h1>TravelSphere</h1>
<p>Plan your trip with us and travel around the world with the most affordable packages!</p>
<a href="/PHP_Files/register1.php" class="button">Register Now!</a>
</div>
</div>
</div>
<!-- Services -->
<section class="container">
<div class="text">
<h2>We have the best services available for you!</h2>
</div>
<div class="rowitems">
<div class="container-box">
<div class="container-image">
<img src="./files/1a.jpg" alt="Flight Services">
</div>
<h4>Flight Services</h4>
<p>Arrival and Departure</p>
</div>
<div class="container-box">
<div class="container-image">
<img src="./files/2a.jpg" alt="Food Services">
</div>
<h4>Food Services</h4>
<p>Catering</p>
</div>
<div class="container-box">
<div class="container-image">
<img src="./files/3a.jpg" alt="Travel Services">
</div>
<h4>Travel Services</h4>
<p>Pick-up/Drop</p>
</div>
<div class="container-box">
<div class="container-image">
<img src="./files/4a.jpg" alt="Hotel Services">
</div>
<h4>Hotel Services</h4>
<p>Check-in/Check-out</p>
</div>
</div>
</section>
<!-- Explore Indian States -->
<section class="locations" id="locations">
<div class="package-title">
<h2>Explore Indian States</h2>
</div>
<div class="card-container">
<!-- Kerala Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/kerala.jpg" alt="Kerala">
</div>
<div class="card-3d-back">
<h5>Kerala</h5>
<p>Experience the tranquil backwaters and lush greenery.</p>
<a href="./kerala.html" class="explore-button">Explore Kerala</a>
</div>
</div>
</div>
<!-- Karnataka Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/karnataka.jpg" alt="Karnataka">
</div>
<div class="card-3d-back">
<h5>Karnataka</h5>
<p>Visit the historic temples and beautiful landscapes in Karnataka.</p>
<a href="./karnataka.html" class="explore-button">Explore Karnataka</a>
</div>
</div>
</div>
<!-- Uttar Pradesh Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/uttarpradesh.jpg" alt="Uttar Pradesh">
</div>
<div class="card-3d-back">
<h5>Uttar Pradesh</h5>
<p>Explore the cultural heritage and historic sites of UP.</p>
<a href="./uttarpradesh.html" class="explore-button">Explore UP</a>
</div>
</div>
</div>
<!-- West Bengal Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/westbengal.jpg" alt="West Bengal">
</div>
<div class="card-3d-back">
<h5>West Bengal</h5>
<p>Delve into the rich culture and heritage of Bengal.</p>
<a href="./westbengal.html" class="explore-button">Explore Bengal</a>
</div>
</div>
</div>
<!-- Rajasthan Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/Rajasthan.png" alt="Rajasthan">
</div>
<div class="card-3d-back">
<h5>Rajasthan</h5>
<p>Discover the majestic forts and royal palaces of Rajasthan.</p>
<a href="./rajasthan.html" class="explore-button">Explore Rajasthan</a>
</div>
</div>
</div>
<!-- Maharashtra Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/Maharashtra.png" alt="Maharashtra">
</div>
<div class="card-3d-back">
<h5>Maharashtra</h5>
<p>Experience the vibrant culture and history of Maharashtra.</p>
<a href="./maharastra.html" class="explore-button">Explore Maharashtra</a>
</div>
</div>
</div>
<!-- Punjab Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/punjab.png" alt="Punjab">
</div>
<div class="card-3d-back">
<h5>Punjab</h5>
<p>Immerse yourself in the food, culture, and landscapes of Punjab.</p>
<a href="./punjab.html" class="explore-button">Explore Punjab</a>
</div>
</div>
</div>
<!-- Telangana Card -->
<div class="card-3d">
<div class="card-3d-inner">
<div class="card-3d-front">
<img src="./files/telangana.png" alt="Telangana">
</div>
<div class="card-3d-back">
<h5>Telangana</h5>
<p>Explore the beautiful landscapes and vibrant culture of Telangana.</p>
<a href="./Telangana.html" class="explore-button">Explore Telangana</a>
</div>
</div>
</div>
</div>
</section>
<!-- Packages -->
<section class="package" id="package">
<div class="package-title">
<h2>Packages</h2>
</div>
<div class="package-content">
<div class="box">
<div class="image">
<img src="./files/p1.jpg" alt="">
<h3>Rs. 9,999/-</h3>
</div>
<div class="dest-content">
<div class="location">
<h4>Bronze</h4>
<ul class="pac-details">
<li>2 Star Hotel</li>
<li>5 Nights Stay</li>
<li>Free Photo Session</li>
<li>Friendly Tour Guide</li>
<li>24/7 Customer Help Center</li>
</ul>
</div>
</div>
</div>
<div class="box">
<div class="image">
<img src="./files/p2.jpg" alt="">
<h3>Rs. 19,999/-</h3>
</div>
<div class="dest-content">
<div class="location">
<h4>Silver</h4>
<ul class="pac-details">
<li>3 Star Hotel</li>
<li>7 Nights Stay</li>
<li>Free Photo Session</li>
<li>Friendly Tour Guide</li>
<li>24/7 Customer Help Center</li>
</ul>
</div>
</div>
</div>
<div class="box">
<div class="image">
<img src="./files/p3.jpg" alt="">
<h3>Rs. 29,999/-</h3>
</div>
<div class="dest-content">
<div class="location">
<h4>Gold</h4>
<ul class="pac-details">
<li>4 Star Hotel</li>
<li>10 Nights Stay</li>
<li>Breakfast & Dinner</li>
<li>Free Photo Session</li>
<li>Friendly Tour Guide</li>
<li>24/7 Customer Help Center</li>
</ul>
</div>
</div>
</div>
<div class="box">
<div class="image">
<img src="./files/p4.jpg" alt="">
<h3>Rs. 39,999/-</h3>
</div>
<div class="dest-content">
<div class="location">
<h4>Platinum</h4>
<ul class="pac-details">
<li>5 Star Hotel</li>
<li>14 Nights Stay</li>
<li>Breakfast, Lunch & Dinner</li>
<li>Bonfire</li>
<li>Free Photo Session</li>
<li>Friendly Tour Guide</li>
<li>24/7 Customer Help Center</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="newsletter">
<div class="newstext">
<h2>Newsletter</h2>
<p>Subscribe to get offers and latest updates every week!</p>
</div>
<div class="send">
<form action="">
<input type="email" name="emailid" placeholder="E-mail" required>
<input type="submit" value="Subscribe">
</form>
</div>
</section>
<!-- Footer -->
<section class="footer">
<div class="foot">
<div class="footer-content">
<div class="footlinks">
<h4>Quick Links</h4>
<ul>
<li><a href="./register.html">Register</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</div>
<div class="footlinks">
<h4>Connect</h4>
<div class="social">
<a href="#" target="_blank"><i class='bx bxl-facebook'></i></a>
<a href="#" target="_blank"><i class='bx bxl-instagram'></i></a>
<a href="#" target="_blank"><i class='bx bxl-twitter'></i></a>
<a href="#" target="_blank"><i class='bx bxl-linkedin'></i></a>
<a href="#" target="_blank"><i class='bx bxl-youtube'></i></a>
<a href="#" target="_blank"><i class='bx bxl-wordpress'></i></a>
<a href="#" target="_blank"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
<div class="end">
<p>Copyright © 2024 TravelSphere All Rights Reserved.<br>Website developed by: Sahithi & Sagarika</p>
</div>
</section>
</body>
</html>