-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
721 lines (614 loc) · 46.9 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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="icon" href="css/photos/others/favicon.ico">
<title>hyndmor-Coming Soon</title>
<!-- meta tags -->
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- bootstrap script -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" data-auto-replace-svg="nest"></script>
<!-- css file -->
<link rel="stylesheet" href="css/style.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Amatic+SC:wght@700&family=Montserrat:wght@700&family=Karla&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#"><img src="css/photos/others/logoblack.png" alt="logo" style="height: 30px;"></a>
</nav>
<div class="text-center">
<div class="Coming-Soon">
<img class="mt-5" src="css/photos/others/logowhite.png" alt="logo" style="height: 50px;">
<h2 class="mt-5"> Lauching Soon.</h2>
<small class="mt-3 mb-5">Give your love <br> Take their care.</small><br>
</div>
<div class="container content">
<img src="css/photos/others/namaste.png" alt="namaste" style="margin-top: 200px; margin-bottom: 100px;">
<h2 class="mt-5 mb-5">What is hyndmor ?</h2>
<p class="mb-5">
<img src="css/photos/others/secretary.png" alt=""> <br> <br>
Mahira, far from her mother due to the pandemic. She is in Search of something handmade, something made with love which won't let her mother to <img src="css/photos/others/old-woman.png" alt="mom" style="height: 50px;"> feel alone. She is thinking to buy some planter pots.<img src="css/photos/others/plant-pot.png" alt="mom" style="height: 50px;"> <br> <br> <br><br><br>
<img src="css/photos/others/dad.png" alt=""> <br> <br>
Mrs. ben, Dad of three kids, He lost his job due to this pandemic, He has started making beautiful planter pots these days <img src="css/photos/others/plant-pot.png" alt="mom" style="height: 50px;">. He is finding for someone who will buy them, but not able to reach the right person. <br> <br><br><br><br>
<img src="css/photos/others/question.png" alt=""> <br> <br>
how will they meet ? <br><br><br><br><br>
<img src="css/photos/others/superman.png" alt="image"> <br><br>
<b>hyndmor</b> will help Mahira to buy the pots and Mrs. ben to get some money through selling the pots to the right person.
<img src="css/photos/others/handshake.png" alt="mom" style="height: 50px;">
</p> <hr class="line">
<br><br><br><br><br>
<h2 class="mt-5 mb-5">But What is hyndmor ?</h2>
<p><b>hyndmor</b> is an online platform (an Online Website) for buying and selling handmade items.</p>
<hr class="line">
<br><br><br> <br><br><br>
<div class="container quote">
<h2>Why to support Handmade ?</h2>
<h5 class="mt-5 mb-5">
"When you support HANDMADE, You are not just supporting A person, Small Business, family,
Our economy; You are actually purchasing a small part of an Artist's Heart." <br>
<i class="mr-5">~ Unknown</i>
</h5>
</div>
</div>
<hr class="line">
<br><br><br><br><br>
<div class="story" >
<!-- Handmade Sellers Story............... -->
<div style="color: black;">.</div>
<h4 class="mt-5">Handmade Sellers Story.</h4> <br><br>
<div class="Jatin-Kohli">
<h5 class="mt-1">Jatin Kohli</h5>
<hr class="name-underline">
<div class="row" style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Jatin Kohli/profile1.jpg" alt="Jatin Kohli">
<!-- <p>Based in Mumbai, Maharashtra.</p> -->
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5">
<div class="container">
<p>It all began during the pandemic situation due to COVID 19 when I observed how the nationwide lock-downs affected the country's economy. Many people lost their jobs or were getting paid so less that they could merely survive.
The small-scale artisans got affected the most during these times. Looking at all of this, I decided to do something for these artisans and their upliftment.
That is when the whole idea of having an Accessories Design Studio took birth where I could use my insights and skills as a designer and incorporate that with different crafts and artisanship of India to create contemporary handmade accessories.
To bring this vision to life, the search for talented artisans to get onboard started. Talking to various housewives and small-scale artisans, day-in and day-out, I meticulously built my team of extremely talented artisans with varied specialisations; and the journey of Jatin Kohli Design began. <br>
</p>
<i class="mr-5">~ founder of Jatin Kohli Designs</i>
<br>
<div id="Jatin" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work1.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work2.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work3.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work4.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work5.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work6.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work7.jpg" alt="Jatin Kohli Designs">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Jatin Kohli/work8.jpg" alt="Jatin Kohli Designs"">
</div>
</div>
<a class="carousel-control-prev" href="#Jatin" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Jatin" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
Official Website: <a href="https://www.jatinkohlidesign.com/" style="color: white; text-decoration: underline;">jatinkohlidesign.com</a> <br>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=+7485996776&text=%20Hello Jatin. I came to know about you through hyndmor. Looking to have a discussion with you about your collections." style="color: white; text-decoration: underline;"> 7485996776</a> (Whatsapp for details)<br>
</div>
</div>
</div>
</div>
<!-- <hr class="complete-underline mt-5"> -->
<div class="Sumi-Gosh">
<h5 class="mt-5">Sharmila Ghosh</h5>
<hr class="name-underline">
<div class="row"style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Sumi-Gosh/profile1.jpg" alt="">
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5">
<div class="container">
<p>
Everyone seeks happiness and contentment in diverse avenues and I attain mine in art. My
art derives its purpose in capturing moments that last a lifetime and I strive to recreate those
scenes. #HerSculptingHands believes that happiness and love can be shared unhindered,
without bounds and barriers through those memories and art is a medium of achieving it. I am
Sharmila Ghosh- founder and the “Hands” behind the handicrafts start-up
#HerSculptingHands. <br>
</p>
<i class="mr-5">~ founder of HerSculptingHands</i>
<div id="Sumi" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Sumi-Gosh/work1.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Sumi-Gosh/work2.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Sumi-Gosh/work3.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Sumi-Gosh/work4.jpg" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Sumi" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Sumi" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
FB Page: <a href="https://www.facebook.com/HerSculptingHands" style="color: white; text-decoration: underline;">HerSculptingHands</a> <br>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=+9880278057&text=%20Hello Sharmila. I came to know about you through hyndmor. Looking to have a discussion with you about your collections." style="color: white; text-decoration: underline;"> 9880278057</a> (Whatsapp for details)<br>
</div>
</div>
</div>
</div>
<!-- Minal-Shetty -->
<div class="Minal-Shetty">
<h5 class="mt-5"> Minal Shetty</h5>
<hr class="name-underline">
<div class="row" style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Minal-Shetty/profile2.jpg" alt="">
<!-- <p>Based in Mumbai, Maharashtra.</p> -->
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5">
<div class="container">
<p>
If there is something which gives me enormous pleasure after being with my family and my beloved pet Leo is, BAKING...
It all began when time was really dispiriting and I realize I had to find the deviation therefore picked up a hobby, yes, hobby of baking.
Initially, I baked just for family since their happy faces encouraged me and that’s how I started The Cake Smith, I imagined how I can make people’s occasion memorable by making the cake which they desire,
as I believe any occasion without a cake is incomplete. All this helped me in becoming a passionate baker. Through The Cake Smith, I aim to make people’s celebration memorable. <br>
</p>
<i class="mr-5">~ founder of The Cake Smith</i>
<div id="Minal" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work1.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work2.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work4.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work3.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work5.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work6.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work7.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work8.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work9.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work11.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work12.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Minal-Shetty/work13.jpg" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Minal" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Minal" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
Instagram : <a href="https://www.instagram.com/thecakesmithmjs/" style="color: white; text-decoration: underline;">thecakesmithmjs</a> <br>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=+91 9930149129&text=%20Hello Minal. I came to know about you through hyndmor. Looking to have a discussion with you about your collections." style="color: white; text-decoration: underline;">9930149129</a> (Whatsapp for details) <br>
</div>
</div>
</div>
</div>
<!-- Usha-Devaiah -->
<div class="Usha-Devaiah">
<h5 class="mt-5">Usha Devaiah</h5>
<hr class="name-underline">
<div class="row" style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Usha-Devaiah/profile1.jpg" alt="">
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5">
<div class="container">
<p>
I'm an Optometrist by profession and mother of a kid. Since my son's birth, my enormous pleasure is being with him, and was occupied with my work. I totally forgot rest all. Due to lockdown being full time at home now my passion has come to distract us. But he allowed me to share his love with my passion.
So I started to serve you all by giving the best quality products at a reasonable cost. Yes, I have started Macrame work a few months back and the feedbacks encouraged me to grow better. <br>
</p>
<i class="mr-5">~ Usha Devaiah</i>
<div id="Usha" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work1.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work2.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work8.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work3.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work4.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work5.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work6.jpg" style="height: 400px;" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Usha-Devaiah/work7.jpg" style="height: 400px;" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Usha" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Usha" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=+{{8050952835}}&text=%20{{Hello Usha. I came to know about you through hyndmor. Looking to have a discussion with you about your collections.}}" style="color: white; text-decoration: underline;">8050952835</a> (Whatsapp for details) <br>
</div>
</div>
</div>
</div>
<!-- <hr class="complete-underline mt-5 "> -->
<!-- Mallika -->
<div class="Mallika">
<h5 class="mt-5">Mallika</h5>
<hr class="name-underline">
<div class="row"style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Mallika/profile1.jpg" alt="">
<!-- <p>Based in Mumbai, Maharashtra.</p> -->
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5">
<div class="container">
<p>
Namaste. My name is Mallika. I am a mother of three kids and a home maker. I learned crocheting from my friend and then slowly started my creativity.
I make new designs by my own and now it has been 20 years of crocheting. I make small things like baby set, handbag, sweater, jacket something or other and give it as a gift to
my neighbours, to the dear ones and to my kids friends. I am so much interested in this crocheting that I keep on making something or other. I even make home decorative
things through crocheting such as cover, thoran, table set and many more. Through my small gifts I make people happy and they keep my gifts as a memory.
I feel happy to pass on my lovable gifts to many more people. If interested contact me through the below whatsapp no.<br>
</p>
<i class="mr-5">~ Mallika</i>
<div id="Mallika" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work6.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work7.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work1.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work2.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work3.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work4.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work5.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work6.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work7.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Mallika/work8.jpg" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Mallika" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Mallika" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<br>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=8928771554&text=%20Hello Mallika. I came to know about you through hyndmor. Looking to have a discussion with you about your collections." style="color: white; text-decoration: underline;">8928771554 </a> (Whatsapp for details) <br>
</div>
</div>
</div>
</div>
<!-- <hr class="complete-underline mt-5"> -->
<div class="Saagarika-Shankar">
<h5 class="mt-5">Saagarika Shankar</h5>
<hr class="name-underline">
<div class="row" style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Saagarika/profile2.jpg" alt="">
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5">
<div class="container">
<p>
Hi,
Saagarika , a mumbite by birth, brought up as a Coimbatorian, who pursued English literature as her career, is a creative person by nature, having inborn urge to express feelings, thoughts through poems and abstract art. She beautifully expresses her connectivity with heart through her Poems and art.
I got the interest in arts and poetry from childhood. I have never learned art anywhere.i do out of passion. And all my artworks are mindflow which is i have expressed myself into it. Slowly i discovered myself doing art as an meditation without knowledge. I was intrested to learn about it and done an online course on coursera.com. 'Healing with Arts.' i started loving my works and wanted to continue.
So, after my marriage, i started my career, by selling my paintings and take online workshops based on art therapy. My main motive is to spread art as an minfullness practise to change the tabbo of our society because they think art is useless, waste of time.
Thank you so much for hearing from me. I feel so grateful to share this. And keep supporting artists. Stay safe!! Stay happy!!
<br>
</p>
<i class="mr-5">~ Saagarika Shankar</i>
<div id="Saagarika" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work1.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work2.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work3.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work4.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work5.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work6.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work7.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work8.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work9.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work10.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Saagarika/work11.jpg" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Saagarika" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Saagarika" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
FB Page: <a href="https://www.facebook.com/Manomithram-103739041036960" style="color: white; text-decoration: underline;"> Manomithram</a><br>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=8903365649&text=%20Hello Saagarika. I came to know about you through hyndmor. Looking to have a discussion with you about your collections." style="color: white; text-decoration: underline;">8903365649</a> (Whatsapp for details) <br> <br>
</div>
</div>
</div>
</div>
<!-- <hr class="complete-underline mt-5"> -->
<div class="Sumi-Gosh">
<h5 class="mt-5">Devanshi D'Souza</h5>
<hr class="name-underline">
<div class="row"style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Devanshi/profile.png" alt="">
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5 mb-5">
<div class="container">
<p>
I'm Devanshi. I have been doing it since I don't know what age, but it makes me feel so happy and is the best way
I can express myself. Each painting, each drawing even if it's a small one ; has the creator's heart and soul in it.
Art in my opinion is the most wonderful thing which I would love to share with the entire world. I haven't yet sold
anything but I am definitely looking to walk that path.<br>
</p>
<i class="mr-5">~ Devanshi</i>
<div id="Devanshi" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work1.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work2.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work3.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work4.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work5.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work6.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work7.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work8.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work9.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work10.png" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Devanshi/work11.png" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Devanshi" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Devanshi" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
Instagram Page: <a href="https://www.instagram.com/infinite.meraki/" style="color: white; text-decoration: underline;">infinite.meraki</a> <br>
</div>
</div>
</div>
</div>
<div class="Sumi-Gosh">
<h5 class="mt-5">Grena Pinto</h5>
<hr class="name-underline">
<div class="row"style="margin-right: 0;">
<div class="col col-lg-12 col-lg-12 col-sm-12">
<img class="profile-pic ml-3 mt-3" src="css/photos/Grena Pinto/profile.jpg" alt="">
</div>
<div class="col col-lg-12 col-lg-12 col-sm-12 writes mt-5 mb-5">
<div class="container">
<p>
My name is Grena, owner and founder of Swirl&Quill. I am a working mother and presently does quilling as my side business. Taking time out for quilling, brainstorming for creative ideas,
enjoying working on it is all a part of my business and I love doing it that way. I started quilling just as a leisure activity. I used to love watching quilling videos. I thought of giving
it a try and I don't know how the time passed and I literally fell for it. However, after some point I had heaps of things going on around me so had to give up on it. Later, one fine day, while
working on my son's project, I started quilling once again and it clicked me to set up something of my own. Its then, I founded Swirl&Quill. I started it with Mandala wall hangings, diwali diyas , key chains
and considerably more. I received a good response and that made me more enthusiastic. While in Thailand, I did participate in some of the events there and my quilling prospered over there too. It had become more than a
hobby to me by that time. When I shifted back to India, along with my full time job I continued quilling and focussed on quilled frames so I worked more on frames. That's my story of quilling till now! Through quilling,
I not only share my ideas and time but also lots of love with my customers.<br>
</p>
<i class="mr-5">~ founder of Swirl&Quill</i>
<div id="Grena" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work1.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work2.jpg" alt="">
</div>
<div class="carousel-item">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work3.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work4.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work5.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work6.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work8.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/worl9.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work10.jpg" alt="">
</div>
<div class="carousel-item ">
<img class="circle ml-3 mt-3 mb-3" src="css/photos/Grena Pinto/work11.jpg" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#Grena" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#Grena" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
fb Page: <a href="https://www.facebook.com/swirlandquill" style="color: white; text-decoration: underline;">swirlandquill</a> <br>
Whatsapp: <a href="https://api.whatsapp.com/send?phone=8879965380&text=%20Hello Saagarika. I came to know about you through hyndmor. Looking to have a discussion with you about your collections." style="color: white; text-decoration: underline;">8879965380</a> (Whatsapp for details) <br> <br>
</div>
</div>
</div>
</div>
</div>
<br><br><br><br><br>
<div class="container quote mt-5 mb-5">
<h5>"hyndmor is not just about buying and selling, <br> it's about sharing love and care."</h5>
</div>
<hr class="line">
<br><br><br><br><br>
<div class="contact mt-5 mb-5">
<h4>Stay updated about the launch</h4> <br>
<p style="font-size: 2rem;"><a style="color: black;" href="https://www.instagram.com/hyndmor"><i class="fab fa-instagram"></i></a>
<a style="color: black;" href="https://www.facebook.com/hyndmor"><i class="fab fa-facebook"></i></a></p> <br><br>
</div> <hr class="line"><br><br>
<div class="help mt-5 mb-5">
<h4>We need your help.</h4>
<img class="img-fluid mt-5 mb-5" src="css/photos/others/help.jpg" alt="">
<p>Lets have a discussion</p>
<p><a style="color: black; text-decoration: underline;" href="https://www.facebook.com/sangeeta.shetty.33865/">Facebook</a><br><a style="color: black; text-decoration: underline" href="https://instagram.com/sangeeeetaaaa">Instagram</a> </p><br>
</div>
<hr class="line"> <br><br><br>
<div class="aboutme mt-5 mb-5">
<h4>Who are we ?</h4>
<p class="mt-5">Student. Learner. Learning about "Local Smiles 😊."</p>
</div> <hr class="line"> <br><br><br><br>
<div class="share mt-5 mb-5">
<a class="dropdown-item" href="https://api.whatsapp.com/send?text=%20hyndmor-A Site for buying handmades https://hyndmor.netlify.app &url=%20https://hyndmor.netlify.app">
Share on WhatsApp
</a>
</div>
<small>Note: This Website is host on Subdomain with the help of netlify. This is not the Official domain name. (Team hyndmor).</small>
<div class="footer">
<p> do you need a website ?
Will make it for you at very reasonable price.
Message us on <br>
<a class="mr-2" style="color: white; font-size: 1rem;" href="https://www.facebook.com/sangeeta.shetty.33865/"><i class="fab fa-facebook"></i></a><a style="color: white; font-size: 1rem;" href="https://instagram.com/sangeeeetaaaa"><i class="fab fa-instagram"></i></a> <br>
(Team hyndmor)
</p>
</div>
</div>
</body>
</html>