-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
311 lines (271 loc) · 11.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Epicure's Haven</title>
<link rel="stylesheet" href="indexstyle.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Cinzel Decorative" rel="stylesheet" />
<style>
.topnav {
font-family: "Cinzel Decorative";
font-size: 22px;
font-weight: bold;
}
</style>
<script src="index.js"></script>
</head>
<body>
<header>
<inline>
<video id="video" src="circle_logo.mp4" height="250" autoplay loop alt="logo"></video>
<pre><h1>Epicure's Haven</h1>
<h4 class="yy">Indulge in the Art of Culinary Bliss</h4></pre>
<pre id="location">
Epicure's Haven
#45, Church Street,
Ashok Nagar
Bangalore 560087</pre>
</inline>
<div class="hamburger" onclick="toggleMobileNav()">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
<i class="fa fa-bars"></i>
</div>
<div class="topnav child" id="myLinks" >
<a class="active" href="#home">Home</a>
<a href="about.html">Our Story</a>
<a href="menu.html">Menu</a>
<a href="#contact-section">Contact Us</a>
<a href="reserve.html">Reserve a Table</a>
</div>
<!-- Mobile Navigation Bar -->
<div class="mobile-nav" id="mobileNav">
<a href="#home" class="mobile-link">Home</a>
<a href="about.html" class="mobile-link">Our Story</a>
<a href="menu.html" class="mobile-link">Menu</a>
<a href="#contact-section" class="mobile-link">Contact Us</a>
<a href="reserve.html" class="mobile-link">Reserve a Table</a>
</div>
</header>
<br />
<br />
<section>
<div class="gallery-container">
<!-- Full-width images with number text -->
<div class="mySlides">
<div class="numbertext">1 / 6</div>
<img src="https://www.architectandinteriorsindia.com/cloud/2021/12/03/ESOeL3RI-Interior-Shot-4-1200x799.jpg"
style="width: 100%" />
</div>
<div class="mySlides">
<div class="numbertext">2 / 6</div>
<img src="https://b.zmtcdn.com/data/pictures/2/19830002/c732a7e43e9da79fd851eb98096a759d.jpg"
style="width: 100%" />
</div>
<div class="mySlides">
<div class="numbertext">3 / 6</div>
<img src="https://10619-2.s.cdn12.com/rests/original/110_511206226.jpg" style="width: 100%" />
</div>
<div class="mySlides">
<div class="numbertext">4 / 6</div>
<img
src="https://images.travelandleisureasia.com/wp-content/uploads/sites/2/2023/02/02151550/Featured-Inside-7.jpeg?tr=w-1200,h-900"
style="width: 100%" />
</div>
<div class="mySlides">
<div class="numbertext">5 / 6</div>
<img src="https://luxebook.in/wp-content/uploads/2022/11/LAH01434-e1667372354458.jpg" style="width: 100%" />
</div>
<div class="mySlides">
<div class="numbertext">6 / 6</div>
<img src="https://static.businessworld.in/upload/UKvwrL_3.gif" style="width: 100%" />
</div>
<div class="mySlides">
<div class="numbertext">6 / 6</div>
<img
src="https://images.jdmagicbox.com/comp/kolkata/k8/033pxx33.xx33.130107113253.y3k8/catalogue/regal-cinema-bar-kolkata-restaurants-368xnip.jpg"
style="width: 100%" />
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<script>
let slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides((slideIndex += n));
}
// Thumbnail image controls
function currentSlide(n) {
showSlides((slideIndex = n));
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
if (n > slides.length) {
slideIndex = 1;
}
if (n < 1) {
slideIndex = slides.length;
}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slides[slideIndex - 1].style.display = "block";
}
// Automatic slideshow
let slideInterval = setInterval(() => {
plusSlides(1);
}, 2000); // Change slide every 4 seconds
// Pause the slideshow when hovering over images
document.querySelectorAll(".mySlides").forEach((slide) => {
slide.addEventListener("mouseenter", () => {
clearInterval(slideInterval);
});
slide.addEventListener("mouseleave", () => {
slideInterval = setInterval(() => {
plusSlides(1);
}, 2000);
});
});
</script>
<!--
<img src="https://www.architectandinteriorsindia.com/cloud/2021/12/03/ESOeL3RI-Interior-Shot-4-1200x799.jpg" style="width:100%">
<img src="https://b.zmtcdn.com/data/pictures/2/19830002/01ecc598614c8ce912239f667909832f.jpg" style="width:100%">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTj-RFMuN0mBohvDbcZdOnxoOpDJLy8OtN72g&usqp=CAU" >
<img src="https://images.travelandleisureasia.com/wp-content/uploads/sites/2/2023/02/02151550/Featured-Inside-7.jpeg?tr=w-1200,h-900" height="500">
<img src="https://luxebook.in/wp-content/uploads/2022/11/LAH01434-e1667372354458.jpg" style="width:100%">
<img src="https://c.ndtvimg.com/2022-11/338ebb3g_one8-commune_120x90_21_November_22.jpg" >
-->
</section>
<br><br>
<div class="page">
<p>
Whether you're looking to kick-start your day, unwind on the weekends,
or simply relish the joys of a leisurely brunch, The OG is your
ultimate destination. Join us in celebrating the art of brunch, where
every plate tells a story and every guest becomes part of our "OG"
family. Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ex
incidunt deserunt animi hic iusto eum maxime molestias asperiores
mollitia qui in, nemo, cum earum, natus adipisci sint distinctio culpa
possimus.
</p>
<a href="#contact-section"><button id="button1"><i>Order Now!</i></button></a>
</div>
<div class="timings">
<pre><h3>Timings</h3></pre>
<p>Monday ~ 10:00am - 10:00pm<br>
Tuesday ~ 10:00am - 10:00pm<br>
Wednesday ~ 10:00am - 10:00pm<br>
Thursday ~ 10:00am - 10:00pm<br>
Friday ~ 11:30am - 11:00pm<br>
Saturday ~ 10:00am - 12:00am<br>
Sunday ~ 10:30am - 12:00am
</p>
</div>
<section class="testimonial">
<div class="container">
<div class="sec-title">
<h2>Our Testimonials</h2>
<div class="Testimonial-content" style="margin-left: -800px">
<img src="https://seeklogo.com/images/Y/yelp-logo-D87674561E-seeklogo.com.png" width="100" />
<h4>"A treat for the eyes and the taste buds!"</h4>
<p>
The food looks like it has been prepared for a culinary magazine.
It's a great place to take a date to or get together with some
friends. Exquisite place!
</p>
</div>
<div class="Testimonial-content" style="margin-top: -800px">
<img src="https://nrai.org/wp-content/uploads/2019/05/Dineout-Logo-e1556792684217.png" width="100" />
<h4>"Love the Maximalist Ambience"</h4>
<p>
Had a great experience. The ambiance is very welcoming and
charming. Amazing wines, food and service. Staff are extremely
knowledgeable and make great recommendations.
</p>
</div>
<div class="Testimonial-content" style="margin-right: -800px; margin-bottom: -500px">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/75/Zomato_logo.png" width="80" />
<h4>"Phenomenal Experience!"</h4>
<p>
Menu is extensive and seasonal to a particularly high standard.
They have different deals on different nights so it’s worth
checking them out before you book. Highly recommended.
</p>
</div>
</div>
</div>
</section>
<hr />
<br />
<div id="scrollpic">
<p style= "font-size:30px;"><i>Eclectic Continental Cuisine</i></p>
<h2 style= "font-size:40px;">SOY DELICIOUS</h2>
</div>
<div class="foot">
<section id="contact-section">
<!-- Add a div for the overlay -->
<div class="contact-content">
<h2><a style="color: rgb(255, 255, 255)"> CONTACT US</a></h2><br>
We would love to hear from you!<br /><br />
Email us at:
<a style="color: rgb(255, 255, 255)"
href="mailto: [email protected]">[email protected]</a><br /><br />
Contact No.:
<a style="color: rgb(255, 255, 255)" href="tel: 9100045000">+91 00045000</a><br />
      
<a style="color: rgb(255, 255, 255)" href="tel: 9100046000">+91 00046000</a>
<br /><br />
Address: Epicure's Haven <br />
    #45, Church Street, Ashok Nagar<br />
    Bangalore 560087<br />
</div>
<div class="contact-map">
<iframe class="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4504.961313852313!2d77.60504580476073!3d12.974226411090777!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae167c7ba9de6b%3A0x7ccd21aeaf2063d0!2sChurch%20Street%20Social!5e0!3m2!1sen!2sin!4v1690750306858!5m2!1sen!2sin"
width="400" height="300" style="border: 0" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<br />
<a target="blank" href="https://www.instagram.com"><img src="https://assets.stickpng.com/thumbs/580b57fcd9996e24bc43c521.png" width="50"
height="50" /></a>
<a target="blank" href="https://www.facebook.com"><img src="https://img.freepik.com/free-icon/facebook_318-219815.jpg" width="50"
height="50" /></a>
</section>
</div>
<footer>
Website Powered by TEAM-7 ✨ Copyright@Team-7 All Rights Reserved.
</footer>
</body>
<script type="text/javascript">
const bg = document.getElementById('scrollpic');
window.addEventListener('scroll', function () {
<!--bg.style.backgroundSize = 160 - +window.pageYOffset/12 + '%';-->
const scrollAmount = window.pageYOffset;
const scaleFactor = 1 + scrollAmount / 15000; // Adjust the divisor for the desired zoom intensity
bg.style.backgroundSize = `${scaleFactor * 100}%`;
});
// Function to check viewport width and hide mobile nav if needed
function checkViewportWidth() {
var viewportWidth = window.innerWidth || document.documentElement.clientWidth;
if (viewportWidth > 768) {
hideMobileNav();
}
}
// Add event listener for window resize
window.addEventListener("resize", checkViewportWidth);
// Initial check on page load
checkViewportWidth();
</script>
</script>
</html>