-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
539 lines (497 loc) · 25.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IcyCo Ice Cream</title>
<!-- custom style sheets -->
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/mediaQueries.css">
<link rel="stylesheet" href="styles/swiper-bundle.min.css">
<link rel="stylesheet" href="styles/topscrollindicator.css">
<!-- link to add favicon -->
<link rel="icon" href="./images/logo.png" type="image/png">
<!-- font awesome icons script -->
<script src="https://kit.fontawesome.com/c732ec9339.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<img src="images/logo.png" alt="Preloader" class="preloader-icon">
<p class="loading-text">Loading...</p>
</div>
<!-- scroll progress -->
<div class="scroll-progress"></div>
<!-- nav bar -->
<div class="nav-bar">
<div class="logo">
<img src="./images/logo.png" alt="icyco-logo" height="40px" width="40px">
<a href="">IcyCo</a>
</div>
<div class="nav-links">
<a href="#home" class="link active">home</a>
<a href="#services" class="link">services</a>
<a href="#about" class="link">about</a>
<a href="#products" class="link">products</a>
<a href="#reviews" class="link">reviews</a>
<a href="#contact" class="link">contact</a>
</div>
<div class="icons">
<div class="icon">
<a href="./login.html"><i class="fa fa-user" aria-hidden="true"></i></a>
</div>
<div class="icon">
<span class="i"><i class="fa fa-shopping-cart cart-icon" aria-hidden="true"></i> <span
class="no-of-cart-items">0</span></span>
</div>
<div class="icon">
<i class="fa fa-bars menu" aria-hidden="true"></i>
</div>
</div>
</div>
<!-- Cart -->
<div class="cart">
<i class="fa fa-times close-cart" aria-hidden="true"></i>
<h1>Your Cart</h1>
<div class="no-empty-cart">
<ul class="cart-list-items">
</ul>
<div>
<div class="total">Sub Total: <span class="sub-total">$0</span></div>
<button>Check out</button>
</div>
</div>
<div class="empty-cart active">
<p>No items in the cart!</p>
</div>
</div>
<!-- Hero -->
<section class="home" id="home">
<div class="text">
<h1>Scoop into Happiness, Anytime, Anywhere!</h1>
<h4>Welcome to the frozen feast, where the world of frozen delights comes alive! Get ready to embark on
a mouthwatering journey through a virtual ice cream paradise. Whether you’re craving a cozy in-store
treat, delivery to your doorstep, or a custom ice cream experience at your next event, we’re here to
serve you the sweetest moments, wherever you are.</h4>
</div>
<div class="image">
<img src="images/Hero1.png" alt="">
</div>
</section>
<!-- Services -->
<section class="services" id="services">
<h1>What <span>we do?</span></h1>
<div class="services-card-wrapper">
<div class="service-card">
<div>
<h2>Dine-In</h2>
<h3>Chill With Us – Indulge In-Store</h3>
<img src="./images/dine in.png" height="150px" width="150px">
<p>Whether you're enjoying a family outing, a date, or a treat just for yourself, our dine-in
experience is the perfect way to savor handcrafted scoops, decadent sundaes, and custom
creations.</p>
<button><a href="./dine-in.html">Find the nearest store to you</a> <i class="fa fa-arrow-right"
aria-hidden="true"></i></button>
</div>
</div>
<div class="service-card">
<div>
<h2>Island-Wide Delivery</h2>
<h3>Ice Cream On the Go – Delivered to Your Door</h3>
<img src="./images/delivary.png" height="150px" width="150px">
<p>Whether it’s a late-night craving or a sweet surprise for someone special, we’ll bring
freshly scooped goodness straight to your doorstep – fast, fresh, and frozen to perfection.
</p>
<a href="./delivery.html"><button>Enter your address <i class="fa fa-arrow-right"
aria-hidden="true"></i></button></a>
</div>
</div>
<div class="service-card">
<div>
<h2>Catering</h2>
<h3>Sweeten Your Event – Ice Cream Catering</h3>
<img src="./images/event.png" height="150px" width="150px">
<p>Whether it's a birthday party, wedding, corporate event, or any celebration, we provide
custom ice cream bars, sundae stations, or full-service catering to keep your guests
delighted. </p>
<a href="./catering.html"><button>Tell us about your event <i class="fa fa-arrow-right" aria-hidden="true"></i></button></a>
</div>
</div>
</div>
</section>
<!-- About -->
<section class="about" id="about">
<h1><span>About</span> Us</h1>
<div class="box-container about-box">
<div class="box image">
<img src="images/about.png" alt="">
</div>
<div class="box text">
<h2>Get The Cool Down With Our Creamy Creations!</h2>
<p>We at IcyCo, We're more than just a company – we're a community driven by a shared vision and
commitment to excellence.
We're excited to continue and expand our business all while staying true to our roots and the
values that define us.
Come visit us and let’s create sweet memories together!</p>
<ul>
<li>
<div class="feature-icon"><i class="fa fa-list-alt" aria-hidden="true"></i></div>
<span><span>Range of flavours</span> from our parlour for <span>Dine-in</span> and
<span>Take-out</span> options</span>
</li>
<li>
<li>
<div class="feature-icon"><i class="fa fa-handshake-o" aria-hidden="true"></i></div>
<span>Manufactured under <span>strict hygiene</span> and <span>food safety
conditions</span></span>
</li>
<li>
<li>
<div class="feature-icon"><i class="fa fa-snowflake-o" aria-hidden="true"></i></div>
<span><span>Best quality ingredients</span> from globally and locally recognized
suppliers</span>
</li>
<li>
<li>
<div class="feature-icon"><i class="fa fa-smile-o" aria-hidden="true"></i></div>
<span>A welcoming space for families, offering a fun and <span>friendly atmosphere</span>
for all ages.</span>
</li>
</ul>
</div>
</div>
</section>
<!-- Products -->
<section class="products" id="products">
<h1>Our <span>Products</span></h1>
<div class="categories-wrapper">
<!-- <button class="active" id="all">All</button> -->
</div>
<div class="box-container products-box">
</div>
</section>
<!-- reviews -->
<section class="reviews" id="reviews">
<h1>Top <span>Reviews</span></h1>
<div class="swiper reviews-box">
<div class="swiper-wrapper">
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer1.jpg" alt="">
<div class="right">
<div class="name"><span>Tom Stepher</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">“IcyCo’s ice cream is like a symphony for your taste buds. The salted caramel
swirl? Divine!”</div>
</div>
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer4.webp" alt="">
<div class="right">
<div class="name"><span>Oliviya Lee</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">“Visited here on a hot day!
The mint chocolate took me straight to heavens.”</div>
</div>
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer2.jpg" alt="">
<div class="right">
<div class="name"><span>Tom Stepher</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">“The pistachio gelato here is nutty nirvana. Close your eyes and savor the
green goodness.”</div>
</div>
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer5.jpg" alt="">
<div class="right">
<div class="name"><span>Mia Patal</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">“Shared a double scoop with my sweetheart.
Loved the strawberry and dark chocolate.”</div>
</div>
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer3.jpg" alt="">
<div class="right">
<div class="name"><span>Tom Stepher</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">"From the name itself theses Ice Creams here are best in quality and taste of
course."</div>
</div>
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer6.jpg" alt="">
<div class="right">
<div class="name"><span>Sopia Devis</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">"When it comes to taste, smell and flavor then strawberry is the best here".
</div>
</div>
<div class="swiper-slide box">
<i class="fa fa-quote-right quote" aria-hidden="true"></i>
<div class="top">
<img src="images/reveiwer7.jpg" alt="">
<div class="right">
<div class="name"><span>Emily Anderson</span> <br> <small>Verfied Customer</small></div>
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="text">"Very tasty ice-creams at such reasonable price!! And no compromise in
quality"</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</section>
<!-- contact -->
<section class="contact" id="contact">
<h1><span>Contact</span> Us</h1>
<form action="#" novalidate class="box-container" id="contact-form">
<div class="row">
<div class="input-box">
<label for="fname">Your First Name</label><br>
<input type="text" id="fname" oninput="this.parentElement.querySelector('small').textContent = ''">
<small class="error" style="color: rgb(255, 0, 0);"></small>
</div>
<div class="input-box">
<label for="lname">Your Last Name</label><br>
<input type="text" id="lname" oninput="this.parentElement.querySelector('small').textContent = ''">
<small class="error" style="color: rgb(255, 0, 0);"></small>
</div>
</div>
<div class="row">
<div class="input-box">
<label for="email">Your Email</label><br>
<input type="email" id="email" oninput="this.parentElement.querySelector('small').textContent = ''">
<small class="error" style="color: rgb(255, 0, 0);"></small>
</div>
<div class="input-box">
<label for="phone">Your Contact Number</label><br>
<input type="tel" id="phone" oninput="this.parentElement.querySelector('small').textContent = ''">
<small class="error" style="color: rgb(255, 0, 0);"></small>
</div>
</div>
<div class="row">
<div class="input-box">
<label for="message">Your Message</label><br>
<textarea name="" id="message" cols="30" rows="10"
oninput="this.parentElement.querySelector('small').textContent = ''"></textarea>
<small class="error" style="color: rgb(255, 0, 0);"></small>
</div>
</div>
<div class="row">
<input type="submit" value="Send">
</div>
</form>
</section>
<!-- FAQs -->
<section class="FAQs" id="FAQs">
<h1>FAQs</h1>
<h2>Find Out More About The Ice Cream Shop</h2>
<br /><br />
<h3>We’ve got cones of wisdom for your burning questions!</h3>
<br />
<div class="FAQ">
<button class="FAQ-questions">WILL MY ICE CREAM MELT BEFORE IT ARRIVES?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">Don’t worry, your ice cream is on a chill mission! We pack it to stay cool, so
it’ll arrive frozen and ready to enjoy.</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">I'M UNHAPPY WITH THE SERVICE, WHO SHOULD I TALK TO?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">We’re sorry your experience wasn’t as sweet as our ice cream! Please reach out
to our support team, and we’ll make things right quicker than you can say ‘sundae.</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">WHAT ARE YOUR DELIVERY HOURS?<i class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">We deliver ice cream every day from 10am to 11 pm. Availability may vary by
location.</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">IS THERE A MINIMUM ORDER AMOUNT?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">Yes, the minimum order amount is 100 to ensure smooth delivery.</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">CAN I CANCEL OR MODIFY MY ORDER AFTER IT’S PLACED?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">Once your order is placed, changes or cancellations may not be possible depending
on how far along it is in the process. Check with the delivery platform for their policies.</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">DO YOU OFFER ANY DISCOUNTS OR PROMOTIONS?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">Yes, we occasionally offer discounts and promotions. Keep an eye on our website or
delivery app for the latest deals!</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">CAN I CUSTOMIZE MY ICE CREAM ORDER?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">At the moment, customization options like adding toppings are not available for
delivery orders. Stay tuned for updates!</div>
</div>
<div class="FAQ">
<button class="FAQ-questions">DO YOU HAVE VEGAN OR DAIRY-FREE OPTIONS?<i
class="fa-solid fa-chevron-down"></i></button>
<div class="FAQ-answers">Yes, we offer a variety of vegan and dairy-free ice cream options. Availability may
vary by location.</div>
</div>
</section>
<!-- footer -->
<section class="footer">
<div class="footer-row">
<div class="footer-col">
<h4>Useful links</h4>
<ul class="links">
<li><a href="#home">Home</a></li>
<li><a href="#">My Account</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#FAQs">FAQs</a></li>
<li><a href="#">Customer Agreement</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Flavors</h4>
<ul class="links">
<li><a href="#">Regular</a></li>
<li><a href="#">Gelato</a></li>
<li><a href="#">Sorbet</a></li>
<li><a href="#">Soft serve</a></li>
<li><a href="#">Frozen Yogurt</a></li>
<li><a href="#">Non Diary/Vegen</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Opening Hours</h4>
<ul class="links">
<li><a href="#">Mon-Sat : 9.00 AM to 9.30 PM</a></li>
<li><a href="#">Sunday : 9.00 AM to 3.00 PM</a></li>
</ul>
<h4 style="margin-top: 15px;">Locations</h4>
<ul class="links">
<li class="address1"><a href="" class="social"><i class="fa-solid fa-location-dot"></i> Kolathur
ramankulam-
Malappuram Dt</a></li>
<li class="address2"><a href="" class="social"><i class="fa-solid fa-location-dot"></i> MG Road,
Bangalore - Karnataka</a></li>
<li class="address3"><a href="" class="social"><i class="fa-solid fa-location-dot"></i>
Connaught Place, New Delhi</a></li>
<li class="address4"><a href="" class="social"><i class="fa-solid fa-location-dot"></i> Park
Street, Kolkata - West Bengal</a></li>
</li>
</ul>
</div>
<div class="footer-col">
<h4>Need Help?</h4>
<ul class="links">
<li><a href="" class="social"><i class="fa-solid fa-phone"></i> +91 90904500112</a></li>
<li><a href="" class="social"><i class="fa-solid fa-phone"></i> +91 90904500112</a></li>
<li><a href="" class="social"><i class="fa-solid fa-envelope"></i> [email protected]</a></li>
</ul>
<h4 style="margin-top: 15px;">Follow Us</h4>
<ul class="links">
<li><a href="#" class="social"><i class="fa-brands fa-facebook-f"></i> Facebook</a></li>
<li><a href="#" class="social"><i class="fa-brands fa-instagram"></i> Instagram</a></li>
<li><a href="#" class="social"><i class="fa-brands fa-linkedin-in"></i> Linkedin</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Newsletter</h4>
<p>
Subscribe to our newsletter for a weekly dose
of news, updates, helpful tips, and
exclusive offers.
</p>
<form action="#">
<input type="email" placeholder="Your email" required>
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</section>
<!-----scroll bottom to top------->
<button class="scroll-button">
<img src="images/icecream-cone.png" alt="icecream-cone" />
</button>
<!-- copyright -->
<div class="copyright">
© 2024 by <span>DharshiB</span> | All Rights Deserved
</div>
</div>
<!-- Toaster -->
<div id="toast-container" class="toast-container"></div>
<script src="script/swiper-bundle.min.js"></script>
<script src="script/reviews.js"></script>
<script src="script/form.js"></script>
<script type="module" src="script/products.js"></script>
<script type="module" src="script/nav.js"></script>
<script type="module" src="script/cart.js"></script>
<script src="script/FAQ.js"></script>
<script src="script/topscrollindicator.js"></script>
</body>
</html>