-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmuseums.html
More file actions
626 lines (563 loc) · 23.2 KB
/
Copy pathmuseums.html
File metadata and controls
626 lines (563 loc) · 23.2 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Museums</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
/* Global Styles */
body {
font-family: 'Roboto', sans-serif;
color: #434A54;
background-color: #F5F7FA;
overflow-x: hidden;
}
/* Navbar Styles */
.navbar {
padding: 15px 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background: linear-gradient(90deg, rgba(255, 153, 51, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(19, 136, 8, 0.1) 100%);
}
.navbar-brand {
font-weight: bold;
font-size: 1.8rem;
color: #434A54;
display: flex;
align-items: center;
}
.brand-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 1.6rem;
background: linear-gradient(90deg, #FF9933, #FFFFFF, #138808);
background-size: 200% auto;
background-clip: text;
-webkit-background-clip: text;
text-fill-color: transparent;
-webkit-text-fill-color: transparent;
animation: textGradient 5s linear infinite;
margin-left: 5px;
}
@keyframes textGradient {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}
/* Section Headings */
.section-heading-container {
display: flex;
align-items: center;
justify-content: space-between;
margin: 40px 0 20px;
}
.section-heading {
font-size: 2rem;
font-weight: 700;
color: #434A54;
}
/* Cards */
.card {
border: none;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 20px;
height: 100%;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.card-body {
padding: 1.5rem;
display: flex;
flex-direction: column;
height: 100%;
}
.card-title {
font-size: 1.2rem;
font-weight: 600;
color: #434A54;
margin-bottom: 0.75rem;
}
.card-text {
color: #6c757d;
margin-bottom: 1.25rem;
flex-grow: 1;
}
.text-warning i {
margin-right: 2px;
}
/* Hero Section */
.hero-section {
position: relative;
background: url('./images/museum.png') no-repeat center center/cover;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
overflow: hidden;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
}
.hero-content h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 0;
}
/* Reviews Section */
.reviews-section {
margin-top: 40px;
}
.review-card {
border: none;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding: 20px;
background-color: #ffffff;
}
.review-card h5 {
font-size: 1.2rem;
font-weight: 600;
color: #434A54;
}
.review-card p {
color: #6c757d;
margin-bottom: 10px;
}
.global-rating {
text-align: center;
margin-top: 20px;
}
.global-rating i {
color: #FFD700;
}
/* Footer Styles */
.heritage-footer {
background-color: #212529;
color: #f8f9fa;
position: relative;
}
.footer-heading {
position: relative;
padding-bottom: 15px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
margin-bottom: 20px;
}
.footer-heading::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 3px;
background: linear-gradient(90deg, #FF9933, #138808);
}
.footer-links {
padding: 0;
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: #adb5bd;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
padding-left: 15px;
}
.footer-links a::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #FF9933;
transition: all 0.3s ease;
}
.footer-links a:hover {
color: #fff;
padding-left: 20px;
}
.footer-links a:hover::before {
background-color: #138808;
}
.social-icons {
display: flex;
gap: 10px;
}
.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
transition: all 0.3s ease;
}
.social-icon:hover {
background-color: #FF9933;
color: #fff;
transform: translateY(-3px);
}
.newsletter-section {
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-form .form-control {
background-color: rgba(255, 255, 255, 0.1);
border: none;
color: #fff;
}
.newsletter-form .form-control::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: flex-end;
}
.footer-bottom-links li {
margin-left: 20px;
}
.footer-bottom-links a {
color: #adb5bd;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
color: #fff;
}
/* Tricolor border at the bottom of the footer */
.tricolor-border {
display: flex;
height: 5px;
width: 100%;
}
.orange-section {
flex: 1;
background-color: #FF9933;
}
.white-section {
flex: 1;
background-color: #FFFFFF;
}
.green-section {
flex: 1;
background-color: #138808;
}
@media (max-width: 768px) {
.footer-bottom-links {
justify-content: flex-start;
margin-top: 10px;
}
.footer-bottom-links li {
margin-left: 0;
margin-right: 20px;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="images/logo2-removebg-preview.png" alt="Map my Heritage Logo" height="40" class="mr-0">
<span class="brand-text">Map my Heritage</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="Place1.html">Destinations</a></li>
<li class="nav-item"><a class="nav-link" href="BlogPage.html">Reviews & Blogs</a></li>
<li class="nav-item"><a class="nav-link" href="ContactPage.html">Contact Us</a></li>
</ul>
<div class="navbar-nav">
<a class="btn btn-primary" href="login1.html" style="margin-right: 10px;">
<i class="fas fa-user-circle mr-1"></i> Login / Sign Up
</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-section">
<div class="hero-overlay"></div>
<div class="hero-content">
<h1>Explore Museums</h1>
<p>Discover the world's most iconic museums and their treasures.</p>
</div>
</div>
<!-- Main Content -->
<main class="mt-5 pt-5">
<div class="container">
<!-- Museums Section -->
<div class="section-heading-container">
<h1 class="section-heading">Famous Museums</h1>
</div>
<div class="row">
<!-- Card 1 -->
<div class="col-md-3 mb-4">
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3Q5LoSVi7ReQDHVPiPCcoWMIOiznIIYzGZQ&s" class="card-img-top" alt="Louvre Museum">
<div class="card-body">
<h5 class="card-title">Louvre Museum</h5>
<p class="card-text">"Home to the Mona Lisa, the Louvre is a treasure trove of art and history."</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="far fa-star"></i>
</div>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="col-md-3 mb-4">
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRNxTDb_JICS6SLwxWgpbo4CUeQ_uQnkKI7FA&s" class="card-img-top" alt="British Museum">
<div class="card-body">
<h5 class="card-title">British Museum</h5>
<p class="card-text">"A world-renowned museum showcasing human history and culture."</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="col-md-3 mb-4">
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQTCxKuPOpNQsMg7OTgzQynIZ_3mpomomaPSQ&s" class="card-img-top" alt="Metropolitan Museum of Art">
<div class="card-body">
<h5 class="card-title">Metropolitan Museum of Art</h5>
<p class="card-text">"An iconic museum in New York City, showcasing art from around the world."</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="far fa-star"></i>
</div>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="col-md-3 mb-4">
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQFtdORIV9eTbVIIja51mJQBSGpFxRdZgsP4g&s" class="card-img-top" alt="Vatican Museums">
<div class="card-body">
<h5 class="card-title">Vatican Museums</h5>
<p class="card-text">"A collection of stunning art and historical artifacts in Vatican City."</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Reviews Section -->
<div class="reviews-section">
<h2 class="text-center">Visitor Reviews</h2>
<div class="row">
<div class="col-md-4">
<div class="review-card">
<h5>John Doe</h5>
<p>"The Louvre Museum is a must-visit for art lovers. Absolutely stunning!"</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="far fa-star"></i>
</div>
</div>
</div>
<div class="col-md-4">
<div class="review-card">
<h5>Jane Smith</h5>
<p>"The British Museum offers an incredible journey through human history."</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
</div>
</div>
</div>
<div class="col-md-4">
<div class="review-card">
<h5>Emily Johnson</h5>
<p>"The Vatican Museums are breathtaking. The Sistine Chapel is unforgettable!"</p>
<div class="text-warning">
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="far fa-star"></i>
</div>
</div>
</div>
</div>
<div class="global-rating">
<h3>Global Rating</h3>
<div>
<i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</main>
<!-- Replace the existing footer with this one for consistency across all pages -->
<footer class="heritage-footer pt-5 mt-5">
<div class="container">
<!-- Main Footer Content -->
<div class="row">
<!-- Brand and Description -->
<div class="col-lg-4 mb-4">
<div class="footer-brand d-flex align-items-center mb-3">
<img src="images/logo2-removebg-preview.png" alt="Map my Heritage Logo" height="50">
<span class="brand-text ml-2">Map my Heritage</span>
</div>
<p class="text-white-50">Discover India's rich cultural heritage through carefully curated travel experiences. Explore ancient monuments, UNESCO sites, and historical wonders with expert guides.</p>
<div class="social-icons mt-4">
<a href="#" class="social-icon"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon"><i class="fab fa-youtube"></i></a>
</div>
</div>
<!-- Quick Links -->
<div class="col-lg-2 col-md-4 col-6 mb-4">
<h5 class="text-white footer-heading">Explore</h5>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="Place1.html">Destinations</a></li>
<li><a href="BlogPage.html">Blogs</a></li>
<li><a href="ContactPage.html">Contact</a></li>
</ul>
</div>
<!-- Heritage Sites -->
<div class="col-lg-2 col-md-4 col-6 mb-4">
<h5 class="text-white footer-heading">Heritage Sites</h5>
<ul class="footer-links">
<li><a href="Unesco_Page.html">UNESCO Sites</a></li>
<li><a href="Ancient_ruins_page.html">Ancient Ruins</a></li>
<li><a href="museums.html">Museums</a></li>
<li><a href="Monuments.html">Monuments</a></li>
</ul>
</div>
<!-- Tour Packages -->
<div class="col-lg-2 col-md-4 col-6 mb-4">
<h5 class="text-white footer-heading">Tour Packages</h5>
<ul class="footer-links">
<li><a href="#">North India Heritage</a></li>
<li><a href="#">South India Temples</a></li>
<li><a href="#">UNESCO Wonders</a></li>
<li><a href="#">Custom Tours</a></li>
</ul>
</div>
<!-- Contact Information -->
<div class="col-lg-2 col-md-4 col-6 mb-4">
<h5 class="text-white footer-heading">Contact Us</h5>
<address class="text-white-50">
<p class="mb-1"><i class="fas fa-map-marker-alt mr-2"></i>123 Heritage Lane, New Delhi</p>
<p class="mb-1"><i class="fas fa-phone-alt mr-2"></i>+91 98765 43210</p>
<p class="mb-1"><i class="fas fa-envelope mr-2"></i>info@mapmyheritage.com</p>
</address>
</div>
</div>
<!-- Newsletter -->
<div class="row newsletter-section py-4 my-4">
<div class="col-md-6">
<h5 class="text-white mb-0">Subscribe to Our Newsletter</h5>
<p class="text-white-50">Get the latest news and special offers</p>
</div>
<div class="col-md-6">
<form class="newsletter-form">
<div class="input-group">
<input type="email" class="form-control" placeholder="Your email address">
<div class="input-group-append">
<button class="btn btn-primary" type="button">Subscribe</button>
</div>
</div>
</form>
</div>
</div>
<!-- Bottom Footer -->
<div class="footer-bottom py-3">
<div class="row">
<div class="col-md-6">
<p class="mb-0 text-white-50">© 2024 Map my Heritage. All rights reserved.</p>
</div>
<div class="col-md-6 text-md-right">
<ul class="footer-bottom-links">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Sitemap</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Tricolor Footer Border -->
<div class="tricolor-border">
<div class="orange-section"></div>
<div class="white-section"></div>
<div class="green-section"></div>
</div>
</footer>
<script>
// Set active nav item based on current page
document.addEventListener('DOMContentLoaded', function() {
const currentPage = window.location.pathname.split('/').pop();
const navLinks = document.querySelectorAll('.navbar-nav .nav-link');
// First, determine which link should be active
let activeLink = null;
if (currentPage === 'index.html' || currentPage === '') {
activeLink = 'index.html';
} else if (currentPage === 'Place1.html' || currentPage.includes('_page') && !currentPage.includes('Ancient_ruins_page')) {
activeLink = 'Place1.html';
} else if (currentPage === 'BlogPage.html' ||
currentPage === 'Unesco_Page.html' ||
currentPage === 'Monuments.html' ||
currentPage === 'museums.html' ||
currentPage === 'Ancient_ruins_page.html') {
activeLink = 'BlogPage.html';
} else if (currentPage === 'ContactPage.html') {
activeLink = 'ContactPage.html';
}
// Now set only the determined active link
navLinks.forEach(link => {
const linkHref = link.getAttribute('href');
if (linkHref === activeLink) {
link.classList.add('active');
} else {
link.classList.remove('active');
}
});
// Handle navbar toggle for mobile
const navbarToggler = document.querySelector('.navbar-toggler');
const navbarCollapse = document.querySelector('.collapse.navbar-collapse');
if (navbarToggler) {
navbarToggler.addEventListener('click', function() {
navbarCollapse.classList.toggle('show');
});
}
});
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>