-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
459 lines (350 loc) · 16.7 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
<!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>ICE CREAM SHOP</title>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo"><span>Ice C</span>ream Shop</a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#service">service</a>
<a href="#about">about</a>
<a href="#gallery">gallery</a>
<a href="#price">price</a>
<a href="#review">review</a>
<a href="#contact">contact</a>
</nav>
<div id="menu-bars" class="fas fa-bars"></div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>its time to eat and drink!! the best <span> ice cream & shakes</span></h3>
<a href="#" class="btn">order us</a>
</div>
<div class="swiper-container home-slider">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="1.jpg" alt=""></div>
<div class="swiper-slide"><img src="21.jpg" alt=""></div>
<div class="swiper-slide"><img src="2.jpg" alt=""></div>
<div class="swiper-slide"><img src="22.jpg" alt=""></div>
<div class="swiper-slide"><img src="3.jpg" alt=""></div>
<div class="swiper-slide"><img src="23.jpg" alt=""></div>
<div class="swiper-slide"><img src="4.jpg" alt=""></div>
</div>
</div>
</section>
<!-- home section ends -->
<iframe src='https://webchat.botframework.com/embed/sfda-both?s=lNDW1LLWzxQ.U2RbPNOjubWxnKwPfhJzPZmJO3QoPfgd5qRhPBWCs30' style='min-width: 400px; width: 100%; min-height: 500px;'></iframe>
<!-- service section starts -->
<section class="service" id="service">
<h1 class="heading"> our <span>services</span> </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-ice-cream"></i>
<h3>ICE CREAM</h3>
<p>
Ice cream is a sweetened frozen food typically eaten as a snack or dessert. It may be made from dairy milk or cream and is flavoured with a sweetener, either sugar or an alternative, and a spice, such as cocoa or vanilla, or with fruit such as strawberries or peaches.
</p>
</div>
<div class="box">
<i class="fas fa-ice-cream"></i>
<h3>SHAKES</h3>
<p>
A milkshake is a sweet drink made by blending milk, ice cream, and flavorings or sweeteners such as butterscotch, caramel sauce, chocolate syrup, fruit syrup, or whole fruit into a thick, sweet, cold mixture.
</p>
</div>
<div class="box">
<i class="fas fa-ice-cream"></i>
<h3>ICE CREAM SHAKE</h3>
<p>
An ice cream-based milkshake may be called a thick shake to distinguish it.
</p>
</div>
</div>
</section>
<!-- service section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"><span>about</span> us </h1>
<div class="row">
<div class="image">
<img src="m1.jpg" alt="">
</div>
<div class="content">
<h3>we will give a very special taste for you</h3>
<p>ABOUT US
Our philosophy.
<p>
Ice cream parlors (American English) or ice cream parlours (British English) are places that sell ice cream, gelato, sorbet, and/or frozen yogurt to consumers. Ice cream is typically sold as regular ice cream (also called hard-packed ice cream), and/or soft serve, which is usually dispensed by a machine with a limited number of flavors (e.g., chocolate, vanilla, and "twist", or "zebra", a mix of the two). Ice cream parlors generally offer a number of flavors and items. Parlors often serve ice cream and other frozen desserts in cones, cups or dishes, the latter two to be eaten with a spoon. Some ice cream parlors prepare ice cream desserts such as sundaes (ice cream topped with syrup, whipped cream and other toppings) or milkshakes, or even a blend (known as a Boston shake).
</p>
<p>
There is no fee. There is no mark-up!
</p>
<a href="#" class="btn">order us</a>
</div>
</div>
</section>
<!-- about section ends -->
<!-- gallery section starts -->
<section class="gallery" id="gallery">
<h1 class="heading">our <span>gallery</span></h1>
<div class="box-container">
<div class="box">
<img src="z2.jpg" alt="">
<h3 class="title">photos and events</h3>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
</div>
<div class="box">
<img src="z1.jpg" alt="">
<h3 class="title">photos and events</h3>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
</div>
<div class="box">
<img src="z3.jpg" alt="">
<h3 class="title">photos and events</h3>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
</div>
<div class="box">
<img src="z4.jpg" alt="">
<h3 class="title">photos and events</h3>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
</div>
<div class="box">
<img src="z5.jpg" alt="">
<h3 class="title">photos and events</h3>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
</div>
<div class="box">
<img src="z6.jpg" alt="">
<h3 class="title">photos and events</h3>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-share"></a>
<a href="#" class="fas fa-eye"></a>
</div>
</div>
</div>
</section>
<!-- gallery section ends -->
<!-- price section starts -->
<section class="price" id="price">
<h1 class="heading"> our <span>menu</span> </h1>
<div class="box-container">
<div class="box">
<h3 class="title">chocolate ice creams</h3>
<h3 class="amount">Rs. 80</h3>
<ul>
<li><i class="fas fa-check"></i>Giani's: Belgium Chocolate Sundae. </li>
<li><i class="fas fa-check"></i>Nirula's: Death By Chocolate. </li>
<li><i class="fas fa-check"></i>Mother Dairy: Chocolate Gateau Ice Cream. </li>
<li><i class="fas fa-check"></i>Kwality Walls: Magnum Chocolate Truffle. </li>
<li><i class="fas fa-check"></i>Ibaco: Choco Bars. </li>
<li><i class="fas fa-check"></i>London Dairy: Double Chocolate. </li>
<li><i class="fas fa-check"></i>Gelato: Belgian Chocolate. </li>
<li><i class="fas fa-check"></i>Haagen Dazs: Chocolate Semi Freddo.</li>
</ul>
<a href="#" class="btn">check out</a>
</div>
<div class="box">
<h3 class="title">vanilla ice cream</h3>
<h3 class="amount">Rs. 60</h3>
<ul>
<li><i class="fas fa-check"></i>Baskin Robbins vanilla ice cream.</li>
<li> <i class="fas fa-check"></i> Ben & Jerry's vanilla ice cream.</li>
<li> <i class="fas fa-check"></i> Turkey Hill all-natural vanilla ice cream.</li>
<li> <i class="fas fa-check"></i> 365 Everyday vanilla bean ice cream.</li>
<li> <i class="fas fa-check"></i>Friendly's naturally vanilla premium ice cream. </li>
<li> <i class="fas fa-check"></i> Breyers natural vanilla ice cream.</li>
<li> <i class="fas fa-check"></i> Häagen-Dazs vanilla bean ice cream.</li>
</ul>
<a href="#" class="btn">check out</a>
</div>
<div class="box">
<h3 class="title">butterscotch ice cream</h3>
<h3 class="amount">Rs 50</h3>
<ul>
<li><i class="fas fa-check"></i>butterscotch smotch</li>
<li> <i class="fas fa-check"></i> butterscotch cookie</li>
<li> <i class="fas fa-check"></i> butterscotch with choco syrup </li>
</ul>
<a href="#" class="btn">check out</a>
</div>
<div class="box">
<h3 class="title">our specials</h3>
<h3 class="amount">Rs. 150-200</h3>
<ul>
<li><i class="fas fa-check"></i>Vanilla. </li>
<li> <i class="fas fa-check"></i>Chocolate. </li>
<li> <i class="fas fa-check"></i> Cookies & Cream.</li>
<li> <i class="fas fa-check"></i> Mint Chocolate Chip</li>
<li> <i class="fas fa-check"></i> Chocolate Chip Cookie Dough.</li>
<li> <i class="fas fa-check"></i> Buttered Pecan.</li>
<li> <i class="fas fa-check"></i> Birthday Cake.</li>
<li> <i class="fas fa-check"></i> Strawberry.</li>
</ul>
<a href="#" class="btn">check out</a>
</div>
</div>
</section>
<!-- price section ends -->
<!-- review section starts -->
<section class="reivew" id="review">
<h1 class="heading">client's <span>review</span></h1>
<div class="review-slider swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide box">
<i class="fas fa-quote-right"></i>
<div class="user">
<img src="pic-1.png" alt="">
<div class="user-info">
<h3>Adi jain</h3>
<span>happy clients</span>
</div>
</div>
<p>The place was awesome and the stay was comfortable. Service was great and the attendant Mr. Lokender did his best to provide us all the basic amenities and made our stay amazing. I would recommend others also to explore the place and contact Mr. Lokender for the best services possible.</p>
</div>
<div class="swiper-slide box">
<i class="fas fa-quote-right"></i>
<div class="user">
<img src="pic-2.png" alt="">
<div class="user-info">
<h3>Ria </h3>
<span>happy clients</span>
</div>
</div>
<p>Evi booking is a hands-on event company that takes care of all the details from A to Z. They are very good at working with your specific needs and budget in mind. The staff is fantastic, the food is great and they always have a variety of creative options to keep your guests entertained. Working with Event Solutions makes my job so much easier!</p>
</div>
<div class="swiper-slide box">
<i class="fas fa-quote-right"></i>
<div class="user">
<img src="pic-3.png" alt="">
<div class="user-info">
<h3>john deo</h3>
<span>happy clients</span>
</div>
</div>
<p> Dear Denise and Evi booking Staff: We would like to thank you for the planning and work put into our wonderful company picnic last month. We greatly appreciate it! Our picnic was a hit!</p>
</div>
<div class="swiper-slide box">
<i class="fas fa-quote-right"></i>
<div class="user">
<img src="pic-4.png" alt="">
<div class="user-info">
<h3>esha khaana</h3>
<span>happy clients</span>
</div>
</div>
<p> Your staff was timely, efficient, friendly and extremely helpful. Thank you for everything.</p>
</div>
</div>
</div>
</section>
<!-- review section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"> <span>order</span> us </h1>
<form action="">
<div class="inputBox">
<input type="text" placeholder="name">
<input type="email" placeholder="email">
</div>
<div class="inputBox">
<input type="number" placeholder="number">
<input type="text" placeholder="quantity">
</div>
<textarea name="" placeholder="your message" id="" cols="30" rows="10"></textarea>
<input type="submit" value="send message" class="btn">
</form>
</section>
<!-- contact section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>branches</h3>
<a href="#"> <i class="fas fa-map-marker-alt"></i> Mumbai </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> New delhi </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> Puna </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> navi mumbai </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> andheri </a>
</div>
<div class="box">
<h3>quick links</h3>
<a href="#"> <i class="fas fa-arrow-right"></i> home </a>
<a href="#"> <i class="fas fa-arrow-right"></i> service </a>
<a href="#"> <i class="fas fa-arrow-right"></i> about </a>
<a href="#"> <i class="fas fa-arrow-right"></i> gallery </a>
<a href="#"> <i class="fas fa-arrow-right"></i> price </a>
<a href="#"> <i class="fas fa-arrow-right"></i> reivew </a>
<a href="#"> <i class="fas fa-arrow-right"></i> contact </a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> +91-9087423451 </a>
<a href="#"> <i class="fas fa-phone"></i> +91-6720912873 </a>
<a href="#"> <i class="fas fa-envelope"></i> mm22@gmail.com </a>
<a href="#"> <i class="fas fa-envelope"></i> an34@gmail.com </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> mumbai, india - 400104 </a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="https://www.facebook.com/"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="https://twitter.com/?lang=en"> <i class="fab fa-twitter"></i> twitter </a>
<a href="https://www.instagram.com/"> <i class="fab fa-instagram"></i> instagram </a>
</div>
</div>
<div class="credit"> created by <span>miss . web designer</span> | all rights reserved 2021</div>
</section>
<!-- footer section ends -->
<!-- theme toggler -->
<div class="theme-toggler">
<div class="toggle-btn">
<i class="fas fa-cog"></i>
</div>
<h3>choose color</h3>
<div class="buttons">
<div class="theme-btn" style="background: #3867d6;"></div>
<div class="theme-btn" style="background: #f7b731;"></div>
<div class="theme-btn" style="background: #ff0033;"></div>
<div class="theme-btn" style="background: #20bf6b;"></div>
<div class="theme-btn" style="background: #fa8231;"></div>
<div class="theme-btn" style="background: #FC427B;"></div>
</div>
</div>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="sc.js"></script>
</body>
</html>