-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallary.html
161 lines (143 loc) · 6.41 KB
/
gallary.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery - The Culinary House</title>
<link rel="stylesheet" href="style4.css">
<link rel="icon" href="https://images.unsplash.com/photo-1514326640560-7d063ef2aed5" type="image/png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="logo">
The<span class="log">Culinary</span>House
</div>
<ul class="navlist">
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Menu.html">Menu</a></li>
<li><a href="gallary.html">Gallery</a></li>
<li><a href="Reservation.html">Book</a></li>
</ul>
</nav>
<main class="gallery-container">
<div class="heading">
<h1>Our Culinary <span>Masterpieces</span></h1>
<p class="subtitle">A Visual Journey Through Our Kitchen</p>
<div class="heading-line"></div>
</div>
<div class="gallery-filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="dishes">Signature Dishes</button>
<button class="filter-btn" data-filter="ambiance">Ambiance</button>
<button class="filter-btn" data-filter="events">Special Events</button>
</div>
<div class="gallery-grid">
<div class="gallery-item" data-category="dishes">
<img src="https://images.unsplash.com/photo-1504674900247-0877df9cc836" alt="Signature Dish">
<div class="overlay">
<h3>Signature Steak</h3>
<p>Premium cut with herb butter</p>
</div>
</div>
<div class="gallery-item" data-category="ambiance">
<img src="https://images.unsplash.com/photo-1517248135467-4c7edcad34c4" alt="Restaurant Interior">
<div class="overlay">
<h3>Elegant Dining</h3>
<p>Modern comfort meets style</p>
</div>
</div>
<div class="gallery-item" data-category="dishes">
<img src="https://images.unsplash.com/photo-1565299624946-b28f40a0ae38" alt="Gourmet Pizza">
<div class="overlay">
<h3>Artisan Pizza</h3>
<p>Wood-fired perfection</p>
</div>
</div>
<div class="gallery-item" data-category="events">
<img src="https://images.unsplash.com/photo-1414235077428-338989a2e8c0" alt="Special Event">
<div class="overlay">
<h3>Private Events</h3>
<p>Memorable celebrations</p>
</div>
</div>
<div class="gallery-item" data-category="dishes">
<img src="https://images.unsplash.com/photo-1546069901-ba9599a7e63c" alt="Healthy Salad">
<div class="overlay">
<h3>Garden Fresh</h3>
<p>Seasonal ingredients</p>
</div>
</div>
<div class="gallery-item" data-category="ambiance">
<img src="https://images.unsplash.com/photo-1466978913421-dad2ebd01d17" alt="Bar Area">
<div class="overlay">
<h3>Craft Bar</h3>
<p>Signature cocktails</p>
</div>
</div>
<div class="gallery-item" data-category="events">
<img src="https://images.unsplash.com/photo-1555244162-803834f70033" alt="Chef Table">
<div class="overlay">
<h3>Chef's Table</h3>
<p>Exclusive dining experience</p>
</div>
</div>
<div class="gallery-item" data-category="dishes">
<img src="https://images.unsplash.com/photo-1551024601-bec78aea704b" alt="Dessert">
<div class="overlay">
<h3>Sweet Endings</h3>
<p>Handcrafted desserts</p>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-container">
<div class="footer-section">
<h4>Contact Information</h4>
<p>📍 S-120, Kulakpurnagar Satyanashi Road, Narak</p>
<p>📞 322421253, 3673582564</p>
<p>✉️ [email protected]</p>
</div>
<div class="footer-section">
<h4>Opening Hours</h4>
<p>Monday-Friday: 6:00 AM - 10:00 PM</p>
<p>Saturday-Sunday: 24Hrs Open</p>
</div>
<div class="footer-section social">
<h4>Follow Us</h4>
<div class="social-links">
<a href="https://facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="copyright">
<p>© 2024 The Culinary House. All rights reserved.</p>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const filterBtns = document.querySelectorAll('.filter-btn');
const galleryItems = document.querySelectorAll('.gallery-item');
filterBtns.forEach(btn => {
btn.addEventListener('click', () => {
filterBtns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
const filter = btn.dataset.filter;
galleryItems.forEach(item => {
if (filter === 'all' || item.dataset.category === filter) {
item.style.display = 'block';
} else {
item.style.display = 'none';
}
});
});
});
});
</script>
</body>
</html>