-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
558 lines (546 loc) · 20.9 KB
/
index.html
File metadata and controls
558 lines (546 loc) · 20.9 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
<!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" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="favicon.ico" />
<title>Sarpanch - Amrutulya</title>
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
<script type="text/javascript">
(function () {
// https://dashboard.emailjs.com/admin/account
emailjs.init("vVCkRHWv3Bz1eu_hf");
})();
</script>
<script type="text/javascript">
window.onload = function () {
document
.getElementById("contact-form")
.addEventListener("submit", function (event) {
event.preventDefault();
emailjs.sendForm("service_0lbvton", "template_2po4v2q", this).then(
function () {
console.log("SUCCESS!");
},
function (error) {
console.log("FAILED...", error);
}
);
});
document
.getElementById("contact-form2")
.addEventListener("submit", function (event) {
event.preventDefault();
emailjs.sendForm("service_0lbvton", "template_we2xj32", this).then(
function () {
console.log("SUCCESS!");
},
function (error) {
console.log("FAILED...", error);
}
);
});
};
</script>
</head>
<body>
<div class="header">
<div><img class="logo" src="logo.webp" alt="" /></div>
<section>
<a href="#franchise"
><button class="get-franch">Get a Franchaise</button></a
>
<button class="call-button">
<i class="fa-solid fa-phone call-icon-header"></i>
<span>9158052727</span>
</button>
<i class="fa-solid fa-bars" id="menubars"></i>
</section>
</div>
<div class="sidemenu hideSidemenu">
<div class="sidemenu-heading">
<!-- <span>Sarpanch Ammruttulya</span> -->
<img class="logo-sidemenu" src="./new-logo.PNG" alt="" />
<i class="fa-regular fa-circle-xmark" id="menuclose"> </i>
</div>
<div class="sidemenufunctions">
<a href="#home"> <span>Home</span></a>
<a href="#about"><span>About Us</span></a>
<a href="#products"><span>Products</span></a>
<a href="#gallery"><span>Gallery</span></a>
<a href="#franchise"><span>Get a franchise</span></a>
<a href="#contact"><span>Contact Us</span></a>
</div>
</div>
<div class="main-container">
<div class="container-1" id="home">
<div class="slider">
<div class="slides">
<!-- Radio Button Start -->
<input
class="radio0 input"
type="radio"
name="radio-btn"
id="radio1"
/>
<input
class="radio0 input"
type="radio"
name="radio-btn"
id="radio2"
/>
<input
class="radio0 input"
type="radio"
name="radio-btn"
id="radio3"
/>
<input
class="radio0 input"
type="radio"
name="radio-btn"
id="radio4"
/>
<!-- Radio Button Close -->
<!-- Slide Image Start -->
<div class="slide first">
<img src="./banner1.png" alt="" />
</div>
<div class="slide">
<img src="./logo-2.PNG" alt="" />
</div>
<div class="slide">
<img src="./Sarpanch-2.PNG" alt="" />
</div>
<div class="slide">
<img src="./top-logo.PNG" alt="" />
</div>
<!-- Slide Image Close -->
<!-- Automatic Navigation Start -->
<div class="navigation-auto">
<div class="auto-btn-1"></div>
<div class="auto-btn-2"></div>
<div class="auto-btn-3"></div>
<div class="auto-btn-4"></div>
</div>
<!-- Automatic Navigation Close -->
</div>
</div>
</div>
<div class="contaier-2">
<div class="about">
<section>
<h1>From home to away</h1>
<p>The road ahead</p>
</section>
<img class="roadmap" src="./roadmap-removebg-preview.png" alt="" />
</div>
<div class="journey">
<div>
<h1 style="color: orange">THE JOURNEY OF A CUP OF TEA</h1>
<p>
आम्ही एक नवीन व्यवसायाच्या शोधात होतो.फिरता फिरता शहज मनात आल कि
आता संध्या चहाला खुप मोठ्या प्रमाणात प्रतिसाद मिळत आहे.म्हणुन
आम्ही पण एक स्वता:चा ब्रैंड बनवण्याचे ठरवले.आणि आम्ही सण २०२२मद्ये
एक सरपंच अमृततुल्य हा ब्रैंड करायचे ठरवले.हे नाव ब्रैंड करण्यासाठी
आम्हाला खुप आडचणी आल्या आणि आम्ही त्या आडचणींना समोरे जाऊन.चहाचा
ब्रैंड करत आसताना आम्ही रांजणगाव MIDC तील चहाप्रेमींची मने
जिकण्यासाठी सज्ज झालो. आणि आज आम्ही चहा व्यवसायात हळु-हळु प्रगती
करत आहोत.ज्यांना स्वता:हुन व्यवसायात प्रवेश घ्यायचा आहे.आशा पात्र
तरुणांना मदत करण्यास आम्ही नेहमीच उत्सुक असतो.अनेक तरुणांनी
त्यांची उद्योजकीय स्वप्ने पूर्ण करण्यासाठी आमच्याशी संपर्क केला.
प्रतेक्षात भेट गेतली आणि हातमिळवणी केली आहे.त्यांच्याशी जोडल्याचा
आम्हाला सार्थ अभिमान आहे
</p>
</div>
<div>
<img class="journey-image" src="./franch5.jpg" alt="" />
</div>
</div>
<div class="abtqlty">
<div class="qltyleft">
<h1 style="color: rgb(237, 166, 33)">
QUALITY IS DEFINITELY OUR CUP OF TEA
</h1>
<h4 style="color: rgb(208, 221, 221)">
We strongly believe that making good tea is no joke! It is a
culinary art that requires patience, knowledge of locally sourced
ingredients, their quality and strategic decisions regarding
alterations of recipes. From hygiene to the quality of tea powder,
the balance of ingredients to the amount of sugar, everything is
dealt with precision and perfection.
</h4>
</div>
<div class="qltyright">
<img class="qltyimage" src="./qualityImg.png" alt="" />
</div>
</div>
<div class="abt-footer">
<h1 class="team-heading">OUR TEAM</h1>
<div class="team">
<div class="team-box">
<img class="team-img" src="./anna.jpg" alt="" />
<span class="name">SURAJ DATE</span>
<span class="post">Manager</span>
</div>
<div class="team-box">
<img class="team-img" src="./ sahil (1).jpg" alt="" />
<span class="name">SAHIL DATE</span>
<span class="post">Manager</span>
</div>
<div class="team-box">
<img class="team-img" src="./sumit.jpg" alt="" />
<span class="name">SUMIT DATE</span>
<span class="post">Manager</span>
</div>
</div>
</div>
</div>
</div>
<div class="container-3" id="products">
<div class="product-top">
<div class="left">
<h1 style="color: rgb(232, 132, 11)">
PREMIUM QUALI-TEA PRODUCTS PLEN-TEA!
</h1>
<h6 style="color: rgb(237, 236, 234)">
Premium quality, sought after taste, carefully curated recipes, the
original flavour of teas and some snack options that will refresh
you from within. Explore our range of teas, beverages and other food
products below.
</h6>
</div>
<div class="right">
<img src="./images-webp/sarpanch.webp" alt="" style="width: 70%" />
</div>
</div>
<div class="product-heading">
<h2 style="color: rgb(201, 105, 41)">Products</h2>
</div>
<hr />
<div class="product-list">
<div class="ourproductsBox">
<img
class="product-images"
src="./sarpanch-withotsugar.JPEG"
alt=""
/>
</div>
<div class="ourproductsBox">
<img class="product-images" src="./sarpanchregular-2.JPEG" alt="" />
</div>
<div class="ourproductsBox">
<img class="product-images" src="./sarpanchjaggery-3.JPEG" alt="" />
</div>
<div class="ourproductsBox">
<img class="product-images" src="./sarpanch-blacktea.JPEG" alt="" />
</div>
<div class="ourproductsBox">
<img class="product-images" src="./Sarpanchlemon-4.JPEG" alt="" />
</div>
<div class="ourproductsBox">
<img class="product-images" src="./sarpancrem-roll.JPEG" alt="" />
</div>
</div>
</div>
<div class="container-4" id="franchise">
<div class="franch-top">
<div class="franch_top-left">
<h1 style="color: orange">EXPLORE A BUSINESS OPPORTUNI-TEA!</h1>
<h5 style="color: rgb(254, 251, 245)">
Tea business is not just a tea business! So with its excellent
product range and innovative taste and healthy options for the body,
it makes it a good choice. We not only offer a variety of teas but
also offer a wide variety of beverages that go well with tea.
</h5>
</div>
<div class="franch_top-right">
<img src="./kettle.PNG" alt="" style="width: 70%" />
</div>
</div>
<div class="franch-mid">
<div class="franchmidd-left">
<img
class="franch-midd-img"
src="./images-webp/sarpanch.webp"
alt=""
/>
</div>
<div class="franchmidd-right">
<h1 style="color: orange">JOIN HANDS WITH SARPANCH AAMRUTTULYA</h1>
<h4 style="color: rgb(241, 237, 230)">
Two families worked together. Being a Countubink business, each
member has played a vital role in making the Sarpanch Tea brand a
success. And went beyond the obstacles that come in it and
delivered. Sarpanch Aamruttulya is here at Chikari Money helping to
create passion among tea lovers, employees, and business partners.
</h4>
</div>
</div>
<div class="franch-bottm">
<div class="franch-bot-left">
<img class="kettle-img" src="./kettle.PNG" alt="" />
</div>
<div class="franch-bot-right">
<form action="" id="contact-form">
<h1 class="franchhead">GET A FRANCHISE</h1>
<div class="franchname-field">
<input
class="fr"
name="user_name"
type="text"
placeholder=" full name"
/>
<input
class="fr"
name="contact_number"
type="number"
placeholder="contact number"
/>
<input
class="fr"
name="user_email"
type="email"
placeholder="email"
/>
<input
class="fr"
name="user_city"
type="text"
placeholder="enter your city"
/>
<input
class="fr"
name="message"
type="text"
placeholder="enter your message"
/>
</div>
<button class="franchsend-message" type="submit" value="send">
Send Message
</button>
</form>
</div>
</div>
</div>
<div class="container-5" id="gallery">
<div class="gallery-1">
<div class="gallery-leftheading">
<h1 style="color: orange">GALLERY !</h1>
<h5 style="color: rgb(252, 249, 244)">
A collection of our memories captured through camera lenses over the
years. Check out some inspiring photos that reflect our vision, a
new beginning, initiatives and Sarpanch Aamruttulya .
</h5>
</div>
<div class="gallery-right">
<img class="gallerykettle-img" src="./kettle.PNG" alt="" style="width: 90%;" />
</div>
</div>
<div class="gallery-2">
<h1 class="gallerypic-heading">PHOTO GALLERY</h1>
<div class="gallery-photoslist">
<img class="gallery-pic" src="./franch.jpg" alt="" />
<img class="gallery-pic" src="./franch2.jpg" alt="" />
<img class="gallery-pic" src="./franch3.jpg" alt="" />
<img class="gallery-pic" src="./franch4.jpg" alt="" />
<img class="gallery-pic" src="./franch5.jpg" alt="" />
</div>
</div>
</div>
<div class="container-6" id="contact">
<div class="contact-top">
<div class="cont-left">
<h1 style="color: orange">CONTACT US</h1>
<h6 style="color: rgb(245, 254, 255)">
Premium quality, sought after taste, carefully curated recipes, the
original flavour of teas and some snack options that will refresh
you from within. Explore our range of teas, beverages and other food
products below.
</h6>
</div>
<div class="cont-right">
<img src="./images-webp/sarpanch.webp" alt="" style="width: 70%;" />
</div>
</div>
<div class="middle">
<div class="middle-content1">
<h4>CALL TODAY</h4>
<span>9158052727</span>
</div>
<div class="middle-content2">
<h4>REQUEST A QUOTE</h4>
<span>9158052727</span>
</div>
<div class="middle-content3">
<h4>EMAIL US</h4>
<span>9158052727</span>
</div>
</div>
<div class="contact-heading">
<h1 style="color: rgb(230, 138, 11)">GET IN TOUCH</h1>
</div>
<div class="first-container">
<div class="icons-left">
<div class="address">
<div class="add-icon">
<a href="https://goo.gl/maps/JNkjduD7m5THYMwEA" target="_blank">
<i class="fa-solid fa-location-dot contact-icon"></i
></a>
</div>
<div class="add-text">
<span>Address</span>
<span style="color: aliceblue"
>1, near Wheels India Compny, Dhok Sangavi, Maharashtra
412209</span
>
</div>
</div>
<div class="email">
<div class="mail-icon">
<a href="mailto:sarpanchaamruttulya@gmail.com" target="_blank">
<i class="fa-solid fa-envelope contact-icon"></i
></a>
</div>
<div class="mail-text">
<span>Email</span>
<span style="color: aliceblue"
>sarpanchaamruttulya@gmail.com</span
>
</div>
</div>
<div class="phone">
<div class="call-icon">
<a href="tel:9158052727" target="_blank">
<i class="fa-solid fa-phone contact-icon"></i
></a>
</div>
<div class="call-text">
<span>Call to sarpanch aamruttulya</span>
<span style="color: aliceblue">+91 9158052727</span>
</div>
</div>
</div>
<div class="input-right">
<form action="" id="contact-form2">
<div class="franchname-field">
<input
class="fr"
name="user_name"
type="text"
placeholder=" full name"
/>
<input
class="fr"
name="contact_number"
type="number"
placeholder="contact number"
/>
<input
class="fr"
name="user_email"
type="email"
placeholder="email"
/>
<input
class="franchinput"
name="message"
type="text"
placeholder="enter your message"
/>
</div>
<button class="franchsend-message" type="submit" value="send">
Send Message
</button>
</form>
</div>
</div>
</div>
<div class="lastpage">
<div class="last-1">
<img class="lastimg" src="./logo-2.PNG" alt="" />
<p style="color: aliceblue">
Sarpanch Tea, Ranjangaon is winning the hearts of all tea lovers in
MIDC. And now Sarpanch Tea is gearing up to grow and expand its
business not only in Ranjangaon but also in Khandesh.
</p>
</div>
<div class="last-2">
<h2 style="color: rgb(15, 14, 13)">QUICK LINKS</h2>
<a href="#home"> <span>Home</span></a>
<a href="#about"><span>About Us</span></a>
<a href="#products"><span>Products</span></a>
<a href="#gallery"><span>Gallery</span></a>
<a href="#franchise"><span>Get a franchise</span></a>
<a href="#contact"><span>Contact Us</span></a>
</div>
<div class="last-3">
<h1 style="color: orange">GET IN TOUCH</h1>
<div class="last-icons">
<div class="address">
<div class="add-icon">
<a href="https://goo.gl/maps/JNkjduD7m5THYMwEA" target="_blank">
<i class="fa-solid fa-location-dot contact-icon"></i
></a>
</div>
<div class="add-text">
<span>Address</span>
<span style="color: rgb(232, 229, 224)"
>1, near Wheels India Compny, Dhok Sangavi, Maharashtra
412209</span
>
</div>
</div>
<div class="email">
<div class="mail-icon">
<a href="mailto:sarpanchaamruttulya@gmail.com" target="_blank">
<i class="fa-solid fa-envelope contact-icon"></i
></a>
</div>
<div class="mail-text">
<span>Email</span>
<span style="color: rgb(232, 229, 224)"
>sarpanchaamruttulya@gmail.com</span
>
</div>
</div>
<div class="phone">
<div class="call-icon">
<a href="tel:9158052727" target="_blank">
<i class="fa-solid fa-phone contact-icon"></i
></a>
</div>
<div class="call-text">
<span>Call to sarpanch aamruttulya</span>
<span style="color: rgb(232, 229, 224)">+91 9158052727</span>
</div>
</div>
</div>
<div class="lastepage-footer">
<i class="fa-brands fa-facebook-f ic"></i>
<i class="fa-brands fa-whatsapp ic"></i>
<i class="fa-brands fa-instagram ic"></i>
<i class="fa-brands fa-youtube ic"></i>
</div>
</div>
</div>
<div class="footer">
<a href="#franchise">Get a franchise </a>
<i class="fa fa-times"></i>
</div>
<script src="./script.js"></script>
</body>
</html>