-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1056 lines (1039 loc) · 89.9 KB
/
index.html
File metadata and controls
1056 lines (1039 loc) · 89.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
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#008060",
secondary: "#fbf7ed",
accent: "#004c3f",
neutral: "#7a7a79",
base100: "#FFFFFF",
info: "#f3fcf4",
success: "#DFF2A1",
warning: "#9db4b4",
error: "#F2B6B5",
},
boxShadow:{
'3xl': '0 5px 20px #43474e45',
},
},
},
},
module.exports = {
}
</script>
<style>
*{
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
</style>
<link rel="shortcut icon" href="./assets/shopify-icon.svg" type="image/x-icon">
<title>
Best Ecommerce Platform in India | Custom Ecommerce Software for Your
Needs | Shopify
</title>
</head>
<body>
<!-- Shopify HEADER -->
<header>
<nav
class="bg-[#fbf7ed] lg:px-24 fixed w-full z-20 top-0 left-0 border-b border-gray-200 flex justify-between align-center">
<!-- Navbar left Div -->
<div
class="container flex flex-wrap justify-start items-center w-3/5 px-2"
>
<!-- Shopify Logo -->
<a href="https://www.shopify.in/" class="flex items-center mr-2">
<img
src="./assets/shopify.svg"
class="mr-2 w-[144px]"
alt="Shopify"/>
</a>
<!-- Start Drop-Down -->
<div class="hidden lg:block">
<button id="dropdownStartButton" data-dropdown-toggle="dropdownStart"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Start <svg class="ml-2 w-4 h-4" aria-hidden="true" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<!-- Dropdown menu -->
<div id="dropdownStart" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-200 divide-y-200 shadow">
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/start" class="w-full block">Start your business</a>
</div>
<ul class="py-1 text-sm text-gray-700" aria-labelledby="dropdownInformationButton">
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleDropdownButton01" data-dropdown-toggle="doubleDropdown01" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Branding<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleDropdown01" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Look professional and help customers connect with your business</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/tools/business-name-generator" class="w-full block">Business name generator</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://hatchful.shopify.com/" class="w-full block">Logo maker</a>
</div>
</li>
</ul>
</div>
</li>
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleDropdownButton02" data-dropdown-toggle="doubleDropdown02" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Online presence<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleDropdown02" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Find a domain, explore stock images, and amplify your brand</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/domains" class="w-full block">Domain name</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://burst.shopify.com/" class="w-full block">Stock photography</a>
</div>
</li>
</ul>
</div>
</li>
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleDropdownButton03" data-dropdown-toggle="doubleDropdown03" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Store set up<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleDropdown03" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Use Shopify's powerful features to start selling</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://themes.shopify.com/?locale=en-IN" class="w-full block">Store themes</a>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<!-- Sell Drop-Down -->
<div class="hidden lg:block">
<button id="dropdownSellButton" data-dropdown-toggle="dropdownSell"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Sell <svg class="ml-2 w-4 h-4" aria-hidden="true" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<!-- Dropdown menu -->
<div id="dropdownSell" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-200 divide-y-200 shadow">
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/sell" class="w-full block">Sell everywhere</a>
</div>
<ul class="py-1 text-sm text-gray-700" aria-labelledby="dropdownInformationButton">
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleDropdownSellButton01" data-dropdown-toggle="doubleSellDropdown01" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Online store<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleSellDropdown01" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Look professional and help customers connect with your business</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/tools/business-name-generator" class="w-full block">Business name generator</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://hatchful.shopify.com/" class="w-full block">Logo maker</a>
</div>
</li>
</ul>
</div>
</li>
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleSellDropdownButton02" data-dropdown-toggle="doubleSellDropdown02" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Point of sale<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleSellDropdown02" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Find a domain, explore stock images, and amplify your brand</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/domains" class="w-full block">Domain name</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://burst.shopify.com/" class="w-full block">Stock photography</a>
</div>
</li>
</ul>
</div>
</li>
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleSellDropdownButton03" data-dropdown-toggle="doubleSellDropdown03" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Buy button<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleSellDropdown03" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Use Shopify's powerful features to start selling</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://themes.shopify.com/?locale=en-IN" class="w-full block">Store themes</a>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<!-- Market Drop-Down -->
<div class="hidden lg:block">
<button id="dropdownMarketButton" data-dropdown-toggle="dropdownMarket"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Market <svg class="ml-2 w-4 h-4" aria-hidden="true" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<!-- Dropdown menu -->
<div id="dropdownMarket" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-200 divide-y-200 shadow">
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/market" class="w-full block">Market your business</a>
</div>
<ul class="py-1 text-sm text-gray-700" aria-labelledby="dropdownInformationButton">
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleMarketDropdownButton01" data-dropdown-toggle="doubleMarketDropdown01" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Email marketing<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleMarketDropdown01" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Look professional and help customers connect with your business</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/tools/business-name-generator" class="w-full block">Business name generator</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://hatchful.shopify.com/" class="w-full block">Logo maker</a>
</div>
</li>
</ul>
</div>
</li>
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleMarketDropdownButton02" data-dropdown-toggle="doubleMarketDropdown02" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Marketing automation<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleMarketDropdown02" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Find a domain, explore stock images, and amplify your brand</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/domains" class="w-full block">Domain name</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://burst.shopify.com/" class="w-full block">Stock photography</a>
</div>
</li>
</ul>
</div>
</li>
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleMarketDropdownButton03" data-dropdown-toggle="doubleMarketDropdown03" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Customer groups<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleMarketDropdown03" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-sm text-gray-900">
<div>Use Shopify's powerful features to start selling</div>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://themes.shopify.com/?locale=en-IN" class="w-full block">Store themes</a>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<!-- Manage Drop-Down -->
<div class="hidden lg:block">
<button id="dropdownManageButton" data-dropdown-toggle="dropdownManage"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Manage <svg class="ml-2 w-4 h-4" aria-hidden="true" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<!-- Dropdown menu -->
<div id="dropdownManage" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-200 divide-y-200 shadow">
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/manage" class="w-full block">Manage everything</a>
</div>
<ul class="py-1 text-sm text-gray-700" aria-labelledby="dropdownInformationButton">
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/flow" class="w-full block">Ecommerce automation</a>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Navbar right Div -->
<div class="container flex flex-wrap justify-end items-center w-2/5 px-2">
<!-- Pricing Button -->
<a href="https://www.shopify.in/pricing" class="hidden lg:block">
<button id="PricingButton"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Pricing</button>
</a>
<!-- Learn Drop-Down -->
<div class="hidden lg:block">
<button id="dropdownLearnButton" data-dropdown-toggle="dropdownLearn"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Learn <svg class="ml-2 w-4 h-4" aria-hidden="true" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg></button>
<!-- Dropdown menu -->
<div id="dropdownLearn" class="hidden z-10 w-60 bg-white rounded shadow">
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://help.shopify.com/en" class="w-full block">Help Center</a>
</div>
<ul class="py-1 text-sm text-gray-700" aria-labelledby="dropdownInformationButton">
<li aria-labelledby="dropdownNavbarLink">
<button id="doubleLearnDropdownButton01" data-dropdown-toggle="doubleLearnDropdown01" data-dropdown-placement="right-start" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">Blog<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"></path></svg></button>
<div id="doubleLearnDropdown01" class="hidden z-10 w-60 bg-white rounded divide-y divide-gray-100 shadow">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="doubleDropdownButton">
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/blog" class="w-full block">Merchant Blog</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/retail" class="w-full block">Retail Blog</a>
</div>
</li>
<li>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/enterprise" class="w-full block">Enterprise Blog</a>
</div>
</li>
</ul>
</div>
</li>
</ul>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/learn" class="w-full block">Business courses</a>
</div>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/blog/topics/guides" class="w-full block">Guides</a>
</div>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://community.shopify.com/c/Shopify-Community/ct-p/en?utm_campaign=navbar&utm_content=en-in&utm_medium=web&utm_source=shopify" class="w-full block">Shopify Community</a>
</div>
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.in/tools" class="w-full block">Free tools</a>
</div>
</div>
</div>
<!-- Login Button -->
<a href="https://www.shopify.in/login" class="hidden lg:block">
<button id="LoginButton"
class="bg-[#fbf7ed] focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 py-2.5 text-center inline-flex items-center"
type="button">Login</button>
</a>
<!-- Try for Free Button -->
<a href="https://accounts.shopify.com/store-create">
<button type="button" class="focus:outline-none text-white bg-[#008060] hover:bg-[#004c3f] focus:ring-0 font-medium rounded-md text-base px-4 py-2 ml-2">Try for free</button>
</a>
</div>
</nav>
</header>
<!-- Shopify MAIN BODY -->
<main id="main-sec" class="bg-secondary pt-[80px]">
<!-- Shopify - Intro Section -->
<section class="lg:px-24 px-2 sm:px-4 py-10 text-gray-800 flex justify-between md:justify-center align-center">
<!-- Shopify - Intro Left Div -->
<div class="container mx-auto text-left">
<div class="w-full px-6 py-4 rounded-md lg:pr-12 md:px-8 xl:col-span-2">
<h1 class="text-5xl font-bold text-accent">The easiest way to sell online in India</h1>
<div class="container mx-auto text-left lg:hidden block">
<video autoplay="" muted="" loop="" playsinline="" name="media"
data-poster="https://cdn.shopify.com/shopifycloud/brochure/assets/home/hero/exp-inbrochurebannerv2-video-poster-f61611dccbbf0aaa60f0e6aa3662448acc8ab35938a29bae99a61366874a43ef.png"
poster="https://cdn.shopify.com/shopifycloud/brochure/assets/home/hero/exp-inbrochurebannerv2-video-poster-f61611dccbbf0aaa60f0e6aa3662448acc8ab35938a29bae99a61366874a43ef.png">
<source src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/inbrochurebannerv2-97d1a3f03a5f9e8d85306e06358d6cff68f2316530f6a1b8a81e0440ee684ea9.webm" type="video/webm">
<source src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/inbrochurebannerv2-93b969f720ff8e3bb6b2a4b73b9bad151aca616ce7fd7d84219c232b7411f20c.mp4" type="video/mp4">
</video>
</div>
<p class="my-8">
<span class="font-normal text-xl text-neutral">Build your eCommerce website to sell, ship, and process payments everywhere</span>
</p>
<form novalidate="" action="" class="self-stretch ng-untouched ng-pristine ng-valid flex justify-center flex-wrap align-center items-center my-8">
<div class="w-4/6 min-w-[280px] mb-2">
<input id="email" type="text" placeholder="Email address"
class="w-full rounded-md focus:ring focus:ring-primary border-primary border-2 text-lg py-2 px-2">
</div>
<a href="https://accounts.shopify.com/store-create" class="w-2/6 items-center min-w-[144px] mb-2">
<button type="button" class="focus:outline-none text-white bg-[#008060] hover:bg-[#004c3f] focus:ring-0 font-medium rounded-md text-lg px-5 py-2 ml-2">Try for free</button>
</a>
</form>
<span class="block mb-2 text-xs text-accent">Try Shopify free for 14 days, no credit card required. By entering your email, you agree to receive marketing emails from Shopify.</span>
</div>
</div>
<!-- Shopify - Intro Right Div -->
<div class="container mx-auto text-center hidden lg:block self-center">
<video autoplay muted loop playsinline name="media"
data-poster="https://cdn.shopify.com/shopifycloud/brochure/assets/home/hero/exp-inbrochurebannerv2-video-poster-f61611dccbbf0aaa60f0e6aa3662448acc8ab35938a29bae99a61366874a43ef.png"
poster="https://cdn.shopify.com/shopifycloud/brochure/assets/home/hero/exp-inbrochurebannerv2-video-poster-f61611dccbbf0aaa60f0e6aa3662448acc8ab35938a29bae99a61366874a43ef.png">
<source src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/inbrochurebannerv2-97d1a3f03a5f9e8d85306e06358d6cff68f2316530f6a1b8a81e0440ee684ea9.webm"
type="video/webm">
<source src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/inbrochurebannerv2-93b969f720ff8e3bb6b2a4b73b9bad151aca616ce7fd7d84219c232b7411f20c.mp4"
type="video/mp4">
</video>
</div>
</section>
<!-- Shopify - Success Examples Section -->
<section class="lg:px-24 px-2 sm:px-4 py-10 bg-accent text-white">
<div class="container p-6 mx-auto space-y-8">
<!-- Shopify - Success Examples Header Div -->
<div class="space-y-2 text-left">
<h2 class="text-5xl font-normal mb-4">Bring your business online</h2>
<div class="flex justify-between align-center flex-wrap">
<p class="font-normal text-base mr-2 mb-2">Create an ecommerce website backed by powerful tools that help you find customers, drive sales, and manage your day-to-day.</p>
<a href="https://www.shopify.in/examples" class="inline-block mb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-bold text-base">Explore more examples</h2>
<div class="flex align-center">
<div class="text-base text-white font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="accent" class="w-6 h-6">
<path fill="white" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Shopify - Success Examples Body Div -->
<div class="grid grid-cols-2 gap-x-4 gap-y-8 md:grid-cols-3 lg:grid-cols-5">
<article class="flex flex-col">
<a rel="noopener noreferrer" href="#" aria-label="Blue Tokai">
<img alt="" class="object-cover w-full :h-100" src="https://cdn.shopify.com/shopifycloud/brochure/assets/merchants/blue-tokai/home-example-small-4144844351e226a9896cffee4bebdaeecb17897116c33a753bfd086b8b621e74.jpg">
</a>
<div class="flex flex-col flex-1 p-4 pl-0 group w-3/4">
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=food-and-drink-templates" class="text-sm mb-1 tracking-wider uppercase font-bold group-hover:underline inline">FOOD & DRINK</a>
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=food-and-drink-templates" aria-label="Blue Tokai">
<h3 class="flex-1 py-2 text-lg font-semibold leading-snug cursor-pointer inline">Blue Tokai</h3>
</a>
</div>
</article>
<article class="flex flex-col">
<a rel="noopener noreferrer" href="#" aria-label="Quirksmith">
<img alt="" class="object-cover w-full :h-100" src="https://cdn.shopify.com/shopifycloud/brochure/assets/merchants/quirksmith/home-example-small-8b1c6b138414b76150e6e00f5143c4301a07b708aa6113dd7096f4340ddfecad.jpg">
</a>
<div class="flex flex-col flex-1 p-4 pl-0 group w-3/4">
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=jewelry-and-accessories-templates" class="text-sm mb-1 tracking-wider uppercase font-bold group-hover:underline inline">JEWELRY</a>
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=jewelry-and-accessories-templates" aria-label="Quirksmith">
<h3 class="flex-1 py-2 text-lg font-semibold leading-snug cursor-pointer inline">Quirksmith</h3>
</a>
</div>
</article>
<article class="flex flex-col">
<a rel="noopener noreferrer" href="#" aria-label="Crossbeats">
<img alt="" class="object-cover w-full :h-100" src="https://cdn.shopify.com/shopifycloud/brochure/assets/merchants/crossbeats/home-example-small-099933088cbe804543fbb1b0963a5d0a16365e73e6000949b5b0ab2bf4b21503.jpg">
</a>
<div class="flex flex-col flex-1 p-4 pl-0 group w-3/4">
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=electronics-templates" class="text-sm mb-1 tracking-wider uppercase font-bold group-hover:underline inline">ELECTRONICS</a>
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=food-and-drink-templates" aria-label="Crossbeats">
<h3 class="flex-1 py-2 text-lg font-semibold leading-snug cursor-pointer inline">Crossbeats</h3>
</a>
</div>
</article>
<article class="flex flex-col">
<a rel="noopener noreferrer" href="#" aria-label="Mcaffeine">
<img alt="" class="object-cover w-full :h-100" src="https://cdn.shopify.com/shopifycloud/brochure/assets/merchants/mcaffeine/home-example-small-26afc247af7a3a7b1c9c585a645ccdff26e76156e98be7d9ff0fe9ecd4d3b675.jpg">
</a>
<div class="flex flex-col flex-1 p-4 pl-0 group w-3/4">
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=jewelry-and-accessories-templates" class="text-sm mb-1 tracking-wider uppercase font-bold group-hover:underline inline">BEAUTY</a>
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=food-and-drink-templates" aria-label="Mcaffeine">
<h3 class="flex-1 py-2 text-lg font-semibold leading-snug cursor-pointer inline">Mcaffeine</h3>
</a>
</div>
</article>
<article class="flex flex-col">
<a rel="noopener noreferrer" href="" aria-label="Bunaai">
<img alt="" class="object-cover w-full :h-100" src="https://cdn.shopify.com/shopifycloud/brochure/assets/merchants/bunaai/home-example-small-4575b175c798e22af5531bae02621396add507433f771db37b1515e9941f8a45.jpg">
</a>
<div class="flex flex-col flex-1 p-4 pl-0 group w-3/4">
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=fashion-and-clothing-templates" class="text-sm mb-1 tracking-wider uppercase font-bold group-hover:underline inline">FASHION</a>
<a rel="noopener noreferrer" href="https://www.shopify.in/examples?category=fashion-and-clothing-templates" aria-label="Bunaai">
<h3 class="flex-1 py-2 text-lg font-semibold leading-snug cursor-pointer inline">Bunaai</h3>
</a>
</div>
</article>
</div>
</div>
</section>
<!-- Shopify - Services Section -->
<section class="lg:px-24 px-2 sm:px-4 pt-10 pb-24 bg-accent text-white">
<div class="container mx-auto p-4 my-6 space-y-2 text-left">
<h2 class="text-2xl md:text-3xl lg:text-3xl font-normal">Take the best path forward</h2>
</div>
<!-- Shopify - Services Cards div -->
<div class="container mx-auto grid justify-center gap-4 sm:grid-cols-2 gap-4 md:grid-cols-3 lg:grid-cols-4">
<div class="flex flex-col items-start p-4">
<img src="./assets/service-icon-01.png" alt="service-icon-01" class="w-8 h-8 mb-3">
<h3 class="my-3 text-lg md:text-lg lg:text-xl font-semibold">Start an online business</h3>
<div class="space-y-1 leading-6 text-base">
<p>Create a business, whether you've got a fresh idea or are looking for a new way to make money.</p>
</div>
</div>
<div class="flex flex-col items-start p-4">
<img src="./assets/service-icon-02.png" alt="service-icon-02" class="w-8 h-8 mb-3">
<h3 class="my-3 text-lg md:text-lg lg:text-xl font-semibold">Move your business online</h3>
<div class="space-y-1 leading-6 text-base">
<p>Turn your retail store into an online store and keep serving customers without missing a beat.</p>
</div>
</div>
<div class="flex flex-col items-start p-4">
<img src="./assets/service-icon-03.png" alt="service-icon-03" class="w-8 h-8 mb-3">
<h3 class="my-3 text-lg md:text-lg lg:text-xl font-semibold">Switch to Shopify</h3>
<div class="space-y-1 leading-6 text-base">
<p>Bring your business to Shopify, no matter which ecommerce platform you're currently using.</p>
</div>
</div>
<div class="flex flex-col items-start p-4">
<img src="./assets/service-icon-04.png" alt="service-icon-04" class="w-8 h-8 mb-3">
<h3 class="my-3 text-lg md:text-lg lg:text-xl font-semibold">Hire a Shopify expert</h3>
<div class="space-y-1 leading-6 text-base">
<p>Get set up with the help of a trusted freelancer or agency from the Shopify Experts Marketplace.</p>
</div>
</div>
</div>
</section>
<!-- Shopify - Benefits Header Section -->
<section class="lg:px-24 px-2 sm:px-4 pt-16 bg-white text-black">
<div class="container max-w-xl p-6 py-4 mx-auto space-y-10 lg:px-8 lg:max-w-7xl">
<div>
<h2 class="text-3xl font-normal tracking-tight text-center md:text-4xl">With you wherever you're going</h2>
<p class="max-w-xl mx-auto mt-4 text-xl text-center text-gray-600">One platform with all the ecommerce and point of sale features you need to start, run, and grow your business.</p>
</div>
</div>
</section>
<!-- Shopify - Benefits Body Section -->
<section class="lg:px-24 px-2 sm:px-4 pt-8 bg-white text-black">
<!-- Shopify - Benefits - Sell Div -->
<div class="gap-8 items-center pt-8 px-4 mx-auto max-w-screen-xl xl:gap-16 md:grid md:grid-cols-2 lg:px-6 bg-white">
<div class="overflow-hidden">
<video autoplay muted loop playsinline name="media" class="-mb-2 shadow-2xl">
<source src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/sell-animation-desktop-1b186d853b04bce6dbc12bb63bd5bc4bc1ff60cd1a06fd12f85261c8acc66d0a.webm"
type="video/webm">
</video>
</div>
<div class="mt-4 md:mt-0">
<h2 class="mb-4 text-3xl tracking-tight font-normal text-gray-900">Sell everywhere</h2>
<p class="mb-6 font-normal text-gray-500 md:text-base">Use one platform to sell products to anyone, anywhere—in person with Point of Sale and online through your website, social media, and online marketplaces.</p>
<a href="https://www.shopify.in/sell" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-medium text-lg">Explore more examples</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Shopify - Benefits - Market Div -->
<div class="gap-8 items-center py-2 px-4 mx-auto max-w-screen-xl xl:gap-16 md:grid md:grid-cols-2 lg:px-6 bg-white">
<div class="mt-4 md:mt-0">
<h2 class="mb-4 text-3xl tracking-tight font-normal text-gray-900">Market your business</h2>
<p class="mb-6 font-normal text-gray-500 md:text-base">Take the guesswork out of marketing with built-in tools that help you create, execute, and analyze digital marketing campaigns.</p>
<a href="https://www.shopify.in/market" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-medium text-lg">Explore how to market your business</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
<div class="overflow-hidden">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/market-small-084eab2d72b510555838c446501d27dd7380585450efcaaa97453289b2b69c79.jpg"
alt="shopify"
class="shadow-2xl">
</div>
</div>
<!-- Shopify - Benefits - Manage Div -->
<div class="gap-8 items-center py-8 px-4 mx-auto max-w-screen-xl xl:gap-16 md:grid md:grid-cols-2 sm:pb-16 lg:px-6 bg-white">
<div class="overflow-hidden">
<img src="./assets/manage-img.png"
alt="shopify"
class="shadow-b-2xl shadow-r-2xl">
</div>
<div class="mt-4 md:mt-0">
<h2 class="mb-4 text-3xl tracking-tight font-normal text-gray-900">Manage everything</h2>
<p class="mb-6 font-normal text-gray-500 md:text-base">Gain the insights you need to grow—use a single dashboard to manage orders, shipping, and payments anywhere you go.</p>
<a href="https://www.shopify.in/manage" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-medium text-lg">Explore how to manage your business</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
</div>
</section>
<!-- Shopify - Expert Section -->
<section class="lg:px-24 px-6 py-10 bg-info text-black">
<!-- Shopify - Expert Header Div -->
<div class="container py-6 mx-auto space-y-8">
<div class="space-y-2 text-left">
<h2 class="text-3xl font-normal mb-4">Explore more from Shopify in India</h2>
</div>
</div>
<!-- Shopify - Expert Main Div -->
<div class="container mx-auto space-y-12">
<div class="flex flex-col overflow-hidden rounded-sm shadow-sm lg:flex-row-reverse bg-white">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/card-collection/india-experts-small-432c16e7cd8ec09f3ae3aca42c58775001d5dc511e70608476ed7ee0e2d2e2c5.jpg"
alt="" class="h-80 aspect-video lg:w-1/2 w-full">
<div class="flex flex-col justify-around flex-1 p-6 lg:w-1/2 w-full">
<span class="text-sm uppercase text-black font-bold">START</span>
<h3 class="text-2xl font-normal lg:mr-32">Launch your store with the help of a Shopify Expert</h3>
<p class="my-6 text-gray-600 lg:mr-36">Find hundreds of experts from India ready to help you get your store up and running, from choosing a theme to building a fully customized site.</p>
<a href="https://experts.shopify.com/services/store-setup/customize-design" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-medium text-base">Browse Experts in India</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Shopify - Empowering Section -->
<section class="lg:px-24 px-2 sm:px-4 py-10 bg-white text-black">
<!-- Empowering Header Div -->
<div class="flex flex-col justify-around flex-1 px-6 pt-6 pb-0 w-full lg:w-1/2">
<h3 class="text-3xl font-normal mr-4 lg:mr-32">Empowering independent business owners everywhere</h3>
<p class="my-6 text-black font-normal text-2xl">Millions of businesses in
<span class="font-bold">175 countries</span> around the world have made over
<span class="font-bold">$496 billion USD</span> in sales using Shopify.
</p>
<a href="https://www.shopify.in/about" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-medium text-base">Learn more about Shopify</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
<!-- Empowering Globe Img Div -->
<div class="w-full text-center">
<img src="./assets/shopify-globe.png" alt="Globe" class="lg:-mt-36 lg:-mb-24">
</div>
</section>
<!-- Shopify - Review Section -->
<section class="lg:px-24 px-2 sm:px-4 pb-10 bg-white text-white">
<div class="container mx-auto space-y-12 bg-accent">
<div class="flex-col lg:flex lg:flex-row lg:justify-center overflow-hidden rounded-sm shadow-sm">
<!-- Reviewer Img -->
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/merchants/alicia-souza/alicia-souza-testimonial@desktop-d947199e09069edaf78e332d87ba932b45805e3c91d032ba8a083a6f67ad04b5.jpg"
alt="" class="w-[100%] lg:min-h-[627px] aspect-video lg:w-1/2"/>
<!-- Reviewer review Div -->
<div class="flex flex-col justify-around flex-1 p-6 pb-16 lg:w-1/2">
<h3 class="text-3xl font-semibold text-center lg:mx-20 leading-snug py-4">
“Shopify was my knight in shining armor when I exhausted every other possibility of getting my online store up and running. It was stunningly easy to use, with more features and plug-ins that I didn’t even know I wanted.”
</h3>
<img class="my-6 mx-auto w-36" src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/testimonials/logo-alicia-souza-small-4ac1bd956b9bf4d8fd78b6597f24ba9379714861042d3a199065b704a11657e6.png">
<h4 class="text-xl font-semibold text-center mx-16 leading-snug py-4">Alicia | Alicia Souza</h4>
</div>
</div>
</div>
</section>
<!-- Shopify - Brands Sections -->
<section class="lg:px-24 px-2 sm:px-4 pb-10 bg-white">
<div class="container p-6 mx-auto space-y-6 text-center lg:p-8 lg:space-y-8">
<!-- Brands-Logo-Div -->
<div class="flex flex-wrap justify-center lg:justify-between">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/bajaao-small-6ca0459c2a2fc6a57654d85cd1f053828d7fee97ecf7ff6dd8a1c460d0a5d344.png"
alt="Bajaao"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/johnjacobs-small-79aa379de8a1c0d6df1c33af8c63a677871164315ccbc495423aeaead650d53a.png"
alt="jacobs"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/kylie-small-4e25b192755f809e9795d9f3722f3fa6b46da1fdc2a48b3ec8b6311f50f83ac7.png"
alt="kylie"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/nush-small-04d75ec8d5b3e20b6e227006c23759c8b65efd482808aff0fc17140c5efb36cc.png"
alt="nush"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/yogabar-small-a41c8bbe605289256552b537eb1bbf993845442c3af43ff4f8f1ed932a7b3609.png"
alt="yogabar"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/starstruck-small-6d49ff528f3ef3217015f906a1ece473e2559688669d00e2b88e7be4f65ce3bf.png"
alt="starstruck"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/logo-soup/mcaffeine-small-0c55170838a60e6a490dac7732d44f988f754de89d790de26b0d8e50a01029b4.png"
alt="mcaffeine"
class="w-25 h-10 mx-10 my-6 fill-current md:mx-12 lg:m-0 text-gray-600">
</div>
</div>
</section>
<!-- Shopify - Help Section -->
<section class="lg:pl-24 pl-2 sm:pl-4 bg-secondary text-black lg:pb-0 pb-12">
<div class="flex flex-col justify-center lg:flex-row lg:justify-between">
<!-- Help Left Links Div -->
<div class="flex flex-col justify-center p-6 pt-2 rounded-sm lg:text-left lg:w-1/2 md:w-full">
<div class="container p-4 pl-0 mx-auto my-6 space-y-1 text-center w-full">
<h2 class="text-3xl font-normal tracking-tight text-left md:text-4xl">Get the help you need,<br>every step of the way</h2>
</div>
<!-- Help Links Divs -->
<div class="container grid justify-center gap-6 mx-auto grid-cols-1 lg:grid-cols-2 xl:grid-cols-2">
<div class="mt-4 md:mt-0">
<h2 class="mb-2 text-lg tracking-tight font-medium text-black">Shopify support</h2>
<p class="mb-2 font-normal text-gray-500 text-base">Contact support 24/7, whether you’re troubleshooting issues or looking for business advice.</p>
<a href="https://www.shopify.in/contact" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-bold text-base">Contact support</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
<div class="mt-4 md:mt-0">
<h2 class="mb-2 text-lg tracking-tight font-medium text-black">Shopify App Store</h2>
<p class="mb-2 font-normal text-gray-500 text-base">Add features and functionality to your business with 6,000+ apps that integrate directly with Shopify.</p>
<a href="https://apps.shopify.com/" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-bold text-base w-[204px]">Visit the Shopify App Store</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
<div class="mt-4 md:mt-0">
<h2 class="mb-2 text-lg tracking-tight font-medium text-black">Shopify Experts Marketplace</h2>
<p class="mb-2 font-normal text-gray-500 text-base">Hire a Shopify expert to help you with everything from store setup to SEO.</p>
<a href="https://experts.shopify.com/" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-1 font-bold text-base md:w-[308px]">Explore the Shopify Experts Marketplace</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pt-1 group-hover:inline-block transition-all mr-2 duration-500 group-hover:mr-0 group-hover:pl-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white" class="w-6 h-6">
<path class="fill-primary" fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- Help Right Img Div -->
<div class="flex items-center justify-center lg:w-1/2 md:w-full">
<img src="https://cdn.shopify.com/shopifycloud/brochure/assets/home/help@desktop-9a31a38edab7cba3389c5d71eccb81ab32d24e0eeb40c8eac3568d98bc179e1e.jpg" alt="" class="object-fit lg:w-full lg:h-full h-80 w-80">
</div>
</div>
</section>
<!-- Shopify Free Trial Section -->
<section class="lg:px-24 px-2 sm:px-4 pt-16 pb-2 bg-white">
<!-- Free Trail Main Div -->
<div class="container max-w-xl p-6 py-4 mx-auto space-y-10 lg:px-8 lg:max-w-7xl">
<div class="text-center mx-auto">
<h2 class="text-3xl font-normal tracking-tight text-center md:text-3xl">Start your business journey with Shopify</h2>
<p class="max-w-xl mx-auto mt-4 text-lg text-center text-gray-600">Try Shopify for free, and explore all the tools and services you need to start, run, and grow your business.</p>
<button type="button" class="focus:outline-none text-white bg-[#008060] hover:bg-[#004c3f] focus:ring-0 font-medium rounded-md text-lg px-5 py-2 ml-2 text-center my-3">Start free trial</button>
</div>
</div>
<!-- Back To Top Button Div -->
<div class="md:text-right text-center">
<a href="./#main-sec" class="inline-flex items-center text-primary text-sm pr-2 pb-2">
<div class="flex justify-center lg:justify-start group">
<h2 class="py-4 font-bold text-base">Back to top</h2>
<div class="flex align-center">
<div class="text-base font-bold self-center pl-1 pb-2 group-hover:inline-block transition-all mt-2 duration-500 group-hover:mt-0 group-hover:pb-4">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve" fill="white" class="w-5 h-5">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g>
<g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)">
<path class="fill-primary" d="M4781.3,4952.6c-64.5-30.5-895.7-838-1849.1-1794.8c-1879.6-1883-1866.1-1869.5-1784.6-2144.3c105.2-349.5,458-505.5,777-342.7c67.9,37.3,661.6,600.5,1313,1255.4L4425.1,3117l17-3779.7c17-3769.4,17-3783,88.2-3878c247.7-332.5,661.6-332.5,909.3,0c71.2,95,71.2,101.8,81.4,3884.8l6.8,3786.4l1265.5-1258.7C8174.2,494.4,8177.5,491,8469.3,569c183.2,50.9,366.4,254.5,400.4,437.7c44.1,271.4,10.2,308.7-1869.5,2185c-1503,1492.9-1781.2,1757.5-1896.6,1788C4934,5023.8,4927.2,5023.8,4781.3,4952.6z"/>
</g>
</g>
</svg>
</div>
</div>
</div>
</a>
</div>
</section>
</main>
<!-- Shopify FOOTER -->
<footer class="lg:px-24 px-4 sm:px-6 pt-4 pb-12 bg-accent text-white">
<!-- Footer - Top Div -->
<div class="container flex flex-col py-4 mx-auto lg:flex-row divide-y-2 divide-gray-600">
<ul class="self-center text-center flex md:justify-start align-center justify-around flex-wrap space-x-4 lg:flex-1 lg:justify-start border-b-2 border-b-gray-600">
<li class="text-lg font-semibold border-b-2 border-b-accent hover:border-b-white pb-3">
<a href="https://www.shopify.in/about">About</a>
</li>
<li class="text-lg font-semibold border-b-2 border-b-accent hover:border-b-white pb-3">
<a href="https://www.shopify.com/careers">Careers</a>
</li>
<li class="text-lg font-semibold border-b-2 border-b-accent hover:border-b-white pb-3">
<a href="https://news.shopify.com/">Press and Media</a>
</li>
<li class="text-lg font-semibold border-b-2 border-b-accent hover:border-b-white pb-3">
<a href="https://www.shopify.in/plus">Shopify Plus</a>
</li>
<li class="text-lg font-semibold border-b-2 border-b-accent hover:border-b-white pb-3">
<a href="https://www.shopify.in/sitemap">Sitemap</a>
</li>
</ul>
</div>
<!-- Footer - Middle Div -->
<div class="container grid grid-cols-2 mx-auto gap-x-3 gap-y-8 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 border-b-2 border-b-gray-600 pb-4">
<!-- Footer - Middle Div - ONLINE STORE 1st Column Div -->
<div class="flex flex-col space-y-4">
<h2 class="font-medium">ONLINE STORE</h2>
<div class="flex flex-col space-y-2 text-sm text-gray-300">
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/online">Sell online</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/online/ecommerce-solutions">Features</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/examples">Examples</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/website/builder">Website builder</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/tour">Online retail</a>
</div>
</div>
<!-- Footer - Middle Div - ONLINE STORE 2nd Column Div -->
<div class="flex flex-col space-y-4">
<h2 class="font-medium invisible">ONLINE STORE</h2>
<div class="flex flex-col space-y-2 text-sm text-gray-300">
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/tour/ecommerce-website">Ecommerce website</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/domains">Domain names</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/tour/website-design">Themes</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/tour/shopping-cart">Shopping cart</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/tour/ecommerce-hosting">Ecommerce hosting</a>
</div>
</div>
<!-- Footer - Middle Div - ONLINE STORE 3rd Column Div -->
<div class="flex flex-col space-y-4">
<h2 class="font-medium invisible">ONLINE STORE</h2>
<div class="flex flex-col space-y-2 text-sm text-gray-300">
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/mobile">Mobile commerce</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/">Ecommerce software</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/online-store">Online store builder</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/dropshipping">Dropshipping business</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://themes.shopify.com/">Store themes</a>
</div>
</div>
<!-- Footer - Middle Div - POINT OF SALE Div -->
<div class="flex flex-col space-y-4">
<h2 class="font-medium">POINT OF SALE</h2>
<div class="flex flex-col space-y-2 text-sm text-gray-300">
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/pos">Point of sale</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/pos/features">Features</a>
</div>
</div>
<!-- Footer - Middle Div - SUPPORT Div -->
<div class="flex flex-col space-y-4">
<h2 class="font-medium">SUPPORT</h2>
<div class="flex flex-col space-y-2 text-sm text-gray-300">
<a class="hover:text-white" rel="noopener noreferrer" href="https://help.shopify.com/en/questions">24/7 support</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://help.shopify.com/en">Shopify Help Center</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://community.shopify.com/c/Shopify-Community/ct-p/en?utm_campaign=footer&utm_content=en-in&utm_medium=web&utm_source=shopify">Shopify Community</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://community.shopify.com/c/Shopify-Community/ct-p/en?utm_campaign=footer&utm_content=en-in&utm_medium=web&utm_source=shopify">API documentation</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/tools">Free tools</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://burst.shopify.com/">Free stock photos</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://exchangemarketplace.com/">Websites for sale</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://hatchful.shopify.com/">Logo Maker</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.com/tools/business-name-generator">Business name generator</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/research/future-of-commerce">Research</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/legal">Legal</a>
</div>
</div>
<!-- Footer - Middle Div - SHOPIFY Div -->
<div class="flex flex-col space-y-4">
<h2 class="font-medium">SHOPIFY</h2>
<div class="flex flex-col space-y-2 text-sm text-gray-300">
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/contact">Contact</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/partners">Partner program</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/affiliates">Affiliate program</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://shopify.dev/">App developers</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://investors.shopify.com/home/default.aspx">Investors</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://www.shopify.in/blog/topics">Blog topics</a>
<a class="hover:text-white" rel="noopener noreferrer" href="https://community.shopify.com/c/events/eb-p/events_en/home?utm_campaign=homepage&utm_content=en&utm_medium=web&utm_source=shopify">Community Events</a>
</div>
</div>
</div>
<!-- Footer - Bottom Div -->
<div class="flex flex-wrap md:justify-between justify-center pt-4 space-x-8">
<!-- Footer - Bottom Left - Social Links Div -->
<div class="flex md:justify-start justify-around space-x-8 align-center mt-4">
<!-- Instagram -->
<a rel="noopener noreferrer" href="https://www.instagram.com/shopify/" title="Instagram" class="flex items-center justify-center w-6 h-6 rounded-full bg-white text-gray-50">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="w-4 h-4">
<path d="M16 0c-4.349 0-4.891 0.021-6.593 0.093-1.709 0.084-2.865 0.349-3.885 0.745-1.052 0.412-1.948 0.959-2.833 1.849-0.891 0.885-1.443 1.781-1.849 2.833-0.396 1.020-0.661 2.176-0.745 3.885-0.077 1.703-0.093 2.244-0.093 6.593s0.021 4.891 0.093 6.593c0.084 1.704 0.349 2.865 0.745 3.885 0.412 1.052 0.959 1.948 1.849 2.833 0.885 0.891 1.781 1.443 2.833 1.849 1.020 0.391 2.181 0.661 3.885 0.745 1.703 0.077 2.244 0.093 6.593 0.093s4.891-0.021 6.593-0.093c1.704-0.084 2.865-0.355 3.885-0.745 1.052-0.412 1.948-0.959 2.833-1.849 0.891-0.885 1.443-1.776 1.849-2.833 0.391-1.020 0.661-2.181 0.745-3.885 0.077-1.703 0.093-2.244 0.093-6.593s-0.021-4.891-0.093-6.593c-0.084-1.704-0.355-2.871-0.745-3.885-0.412-1.052-0.959-1.948-1.849-2.833-0.885-0.891-1.776-1.443-2.833-1.849-1.020-0.396-2.181-0.661-3.885-0.745-1.703-0.077-2.244-0.093-6.593-0.093zM16 2.88c4.271 0 4.781 0.021 6.469 0.093 1.557 0.073 2.405 0.333 2.968 0.553 0.751 0.291 1.276 0.635 1.844 1.197 0.557 0.557 0.901 1.088 1.192 1.839 0.22 0.563 0.48 1.411 0.553 2.968 0.072 1.688 0.093 2.199 0.093 6.469s-0.021 4.781-0.099 6.469c-0.084 1.557-0.344 2.405-0.563 2.968-0.303 0.751-0.641 1.276-1.199 1.844-0.563 0.557-1.099 0.901-1.844 1.192-0.556 0.22-1.416 0.48-2.979 0.553-1.697 0.072-2.197 0.093-6.479 0.093s-4.781-0.021-6.48-0.099c-1.557-0.084-2.416-0.344-2.979-0.563-0.76-0.303-1.281-0.641-1.839-1.199-0.563-0.563-0.921-1.099-1.197-1.844-0.224-0.556-0.48-1.416-0.563-2.979-0.057-1.677-0.084-2.197-0.084-6.459 0-4.26 0.027-4.781 0.084-6.479 0.083-1.563 0.339-2.421 0.563-2.979 0.276-0.761 0.635-1.281 1.197-1.844 0.557-0.557 1.079-0.917 1.839-1.199 0.563-0.219 1.401-0.479 2.964-0.557 1.697-0.061 2.197-0.083 6.473-0.083zM16 7.787c-4.541 0-8.213 3.677-8.213 8.213 0 4.541 3.677 8.213 8.213 8.213 4.541 0 8.213-3.677 8.213-8.213 0-4.541-3.677-8.213-8.213-8.213zM16 21.333c-2.948 0-5.333-2.385-5.333-5.333s2.385-5.333 5.333-5.333c2.948 0 5.333 2.385 5.333 5.333s-2.385 5.333-5.333 5.333zM26.464 7.459c0 1.063-0.865 1.921-1.923 1.921-1.063 0-1.921-0.859-1.921-1.921 0-1.057 0.864-1.917 1.921-1.917s1.923 0.86 1.923 1.917z"></path>
</svg>
</a>
<!-- Pinterest -->
<a rel="noopener noreferrer" href="https://www.pinterest.com/shopify/" title="Pinterest" class="flex items-center justify-center w-6 h-6 rounded-full bg-white text-gray-50">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="w-4 h-4">
<path d="M16.021 0c-8.828 0-15.984 7.156-15.984 15.984 0 6.771 4.214 12.552 10.161 14.88-0.141-1.266-0.266-3.203 0.052-4.583 0.292-1.25 1.875-7.943 1.875-7.943s-0.479-0.964-0.479-2.375c0-2.219 1.292-3.88 2.891-3.88 1.365 0 2.026 1.021 2.026 2.25 0 1.37-0.87 3.422-1.323 5.323-0.38 1.589 0.797 2.885 2.365 2.885 2.839 0 5.026-2.995 5.026-7.318 0-3.813-2.75-6.49-6.677-6.49-4.547 0-7.214 3.417-7.214 6.932 0 1.375 0.526 2.854 1.188 3.651 0.13 0.161 0.146 0.302 0.109 0.464-0.12 0.5-0.391 1.599-0.443 1.818-0.073 0.297-0.229 0.359-0.536 0.219-1.99-0.922-3.245-3.839-3.245-6.193 0-5.036 3.667-9.672 10.563-9.672 5.542 0 9.854 3.958 9.854 9.229 0 5.516-3.474 9.953-8.307 9.953-1.62 0-3.141-0.839-3.677-1.839l-1 3.797c-0.359 1.391-1.339 3.135-2 4.193 1.5 0.458 3.078 0.714 4.734 0.714 8.813 0 15.979-7.151 15.979-15.984 0-8.828-7.167-15.979-15.979-15.979z"></path>
</svg>
</a>
<!-- Twitter -->
<a rel="noopener noreferrer" href="https://twitter.com/shopify" title="Twitter" class="flex items-center justify-center w-6 h-6 rounded-full bg-white text-gray-50">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="w-4 h-4">
<path d="M31.937 6.093c-1.177 0.516-2.437 0.871-3.765 1.032 1.355-0.813 2.391-2.099 2.885-3.631-1.271 0.74-2.677 1.276-4.172 1.579-1.192-1.276-2.896-2.079-4.787-2.079-3.625 0-6.563 2.937-6.563 6.557 0 0.521 0.063 1.021 0.172 1.495-5.453-0.255-10.287-2.875-13.52-6.833-0.568 0.964-0.891 2.084-0.891 3.303 0 2.281 1.161 4.281 2.916 5.457-1.073-0.031-2.083-0.328-2.968-0.817v0.079c0 3.181 2.26 5.833 5.26 6.437-0.547 0.145-1.131 0.229-1.724 0.229-0.421 0-0.823-0.041-1.224-0.115 0.844 2.604 3.26 4.5 6.14 4.557-2.239 1.755-5.077 2.801-8.135 2.801-0.521 0-1.041-0.025-1.563-0.088 2.917 1.86 6.36 2.948 10.079 2.948 12.067 0 18.661-9.995 18.661-18.651 0-0.276 0-0.557-0.021-0.839 1.287-0.917 2.401-2.079 3.281-3.396z"></path>
</svg>
</a>
<!-- Facebook -->
<a rel="noopener noreferrer" href="https://www.facebook.com/shopify" title="Facebook" class="flex items-center justify-center w-6 h-6 rounded-full bg-white text-gray-50">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="w-4 h-4">
<path d="M32 16c0-8.839-7.167-16-16-16-8.839 0-16 7.161-16 16 0 7.984 5.849 14.604 13.5 15.803v-11.177h-4.063v-4.625h4.063v-3.527c0-4.009 2.385-6.223 6.041-6.223 1.751 0 3.584 0.312 3.584 0.312v3.937h-2.021c-1.984 0-2.604 1.235-2.604 2.5v3h4.437l-0.713 4.625h-3.724v11.177c7.645-1.199 13.5-7.819 13.5-15.803z"></path>
</svg>
</a>
<!-- LinkedIn -->
<a rel="noopener noreferrer" href="https://www.linkedin.com/company/shopify" title="LinkedIn" class="flex items-center justify-center w-6 h-6 rounded-full bg-white text-gray-50">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="w-4 h-4">
<path d="M16.318 13.714v5.484h9.078c-0.37 2.354-2.745 6.901-9.078 6.901-5.458 0-9.917-4.521-9.917-10.099s4.458-10.099 9.917-10.099c3.109 0 5.193 1.318 6.38 2.464l4.339-4.182c-2.786-2.599-6.396-4.182-10.719-4.182-8.844 0-16 7.151-16 16s7.156 16 16 16c9.234 0 15.365-6.49 15.365-15.635 0-1.052-0.115-1.854-0.255-2.651z"></path>
</svg>
</a>
</div>
<!-- Footer - Bottom Right Div -->
<div class="flex md:justify-start justify-around align-center space-x-4 md:space-x-8 mt-4">
<h3 class="text-gray-300 md:text-lg text-sm">Terms of Service</h3>
<h3 class="text-gray-300 md:text-lg text-sm">Privacy Policy</h3>
<div class="text-white text-lg block">
<!-- Select Country Button -->
<button id="dropdownCountryButton" data-dropdown-toggle="dropdownCountry" class="bg-accent focus:ring-0 focus:outline-none focus:ring-[#fbf7ed] font-medium text-base px-2 text-center inline-flex items-center" type="button">
<img src="./assets/globe-icon.svg" alt="glb" class="w-4 h-4 mr-1 mt-0.5">
India
<svg class="ml-2 w-4 h-4" aria-hidden="true" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
</button>
<!-- Country Dropdown menu -->
<div id="dropdownCountry" class="hidden z-10 w-100 bg-white rounded divide-y divide-gray-200 divide-y-200 shadow block" style="position: absolute; inset: 0px auto auto 0px; margin: 0px; transform: translate3d(173.6px, 68px, 0px);" data-popper-placement="bottom">
<div class="py-3 px-4 text-base font-semibold text-black hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<h1 class="w-full text-2xl">Country/region</h1>
</div>
<div class="flex md:justify-between align-center justify-center">
<ul class="py-1 text-sm text-gray-700" aria-labelledby="dropdownCountryButton">
<li aria-labelledby="dropdownCountryLink">
<button id="CountryButton01" type="button" class="flex justify-between items-center py-3 px-4 text-base font-semibold text-black w-full hover:bg-[#f0f1f2] border-white border-l-4 hover:border-[#008060]">
<a href="https://www.shopify.com.au/">Australia</a>
</button>
</li>
<li aria-labelledby="dropdownCountryLink">