-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1123 lines (1067 loc) · 39.5 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
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="ar">
<head>
<!-- ////////////////// -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Start and grow your e-commerece business - 3-Day free trial</title>
<!-- Google / Search Engine Tags -->
<meta
itemprop="name"
content="Start and grow your e-commerece business - 3-Day free trial"
/>
<meta
itemprop="description"
content=" Try Shopify free and start a business or grow an existing one. Get more than ecommerce software with tools to manage every part of your business. "
/>
<meta itemprop="image" content="imgs/shopify-banner.jpg" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://hsmgebaly.github.io/shopify" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Start and grow your e-commerece business - 3-Day free trial"
/>
<meta
property="og:description"
content=" Try Shopify free and start a business or grow an existing one. Get more than ecommerce software with tools to manage every part of your business. "
/>
<meta property="og:image" content="imgs/shopify-banner.jpg" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Start and grow your e-commerece business - 3-Day free trial"
/>
<meta
name="twitter:description"
content=" Try Shopify free and start a business or grow an existing one. Get more than ecommerce software with tools to manage every part of your business. "
/>
<meta name="twitter:image" content="imgs/shopify-banner.jpg" />
<!-- FavIcon for browser -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="imgs/favicon/favicon-32x32.png"
/>
<!-- Add website as an Icon on Iphone home screen -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="imgs/favicon/apple-touch-icon.png"
/>
<!-- Add website as an Icon on andriod home screen -->
<link rel="manifest" href="site.webmanifest" />
<!-- //////////////////////// -->
<!-- call jquery libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<!-- Slick 5 CDN Links -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css"
/>
<!-- Bootstrap 5 CDN Links -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<!--css file-->
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="general.css" />
</head>
<!-- ////////////////////// -->
<body id="bootstrap-overrides">
<!-- ///////////////// -->
<!--start header-->
<header class="fixed-top">
<!--start navbar-->
<nav>
<div class="nav-bar" id="navbarNav">
<ul class="main-nav-list nav-left">
<li>
<img
class="logo"
src="imgs/nav/Shopify-logo.png"
alt="shopify-logo"
/>
</li>
<li class="nav-item dropdown start-dropdown">
<a
href="#"
class="nav-link"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
>Start <ion-icon name="chevron-down-outline"></ion-icon
></a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li class="dropdown-item dropdown-item-head">
<a href="https://www.shopify.com/start"
>Start your business</a
>
</li>
<li class="dropdown-item">
Branding<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Online presence
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Store set up
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
</ul>
</li>
<li class="nav-item dropdown start-dropdown">
<a
href="#"
class="nav-link"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
>Sell <ion-icon name="chevron-down-outline"></ion-icon
></a>
<ul
class="dropdown-menu dropdown-menu"
aria-labelledby="navbarDropdown"
>
<li class="dropdown-item dropdown-item-head">
<a href="https://www.shopify.com/sell">Sell everywhere</a>
</li>
<li class="dropdown-item">
Online store
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Point of Sale
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Buy Button
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Checkout <ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Sales channels
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Wholesale marketplace
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Custome storefront tools
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
International commerce
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
</ul>
</li>
<li class="nav-item dropdown start-dropdown">
<a
href="#"
class="nav-link"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
>Market<ion-icon name="chevron-down-outline"></ion-icon
></a>
<ul
class="dropdown-menu dropdown-menu"
aria-labelledby="navbarDropdown"
>
<li
class="dropdown-item dropdown-item-head dropdown-item-market"
>
<a href="https://www.shopify.com/market"
>Market your business</a
>
</li>
<li class="dropdown-item dropdown-item-market">
<a href="https://www.shopify.com/email-marketing"></a> Email
marketing
</li>
<li class="dropdown-item dropdown-item-market">
<a href="https://www.shopify.com/marketing-automation"></a>
Marketing automation
</li>
<li class="dropdown-item dropdown-item-market">
<a href="https://www.shopify.com/segmentation"></a>
Customer groups
</li>
<li class="dropdown-item dropdown-item-market">
<a href="https://www.shopify.com/inbox"></a> Business chat
</li>
<li class="dropdown-item dropdown-item-market">
<a href="https://www.shopify.com/facebook-marketing"></a>
Facebook Ads
</li>
</ul>
</li>
<li class="nav-item dropdown start-dropdown">
<a
href="#"
class="nav-link"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
>Manage <ion-icon name="chevron-down-outline"></ion-icon
></a>
<ul
class="dropdown-menu dropdown-menu"
aria-labelledby="navbarDropdown"
>
<li class="dropdown-item dropdown-item-head">
<a href="https://www.shopify.com/sell">Manage Everything</a>
</li>
<li class="dropdown-item">
Payments
<ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
Balance <ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/capital"> Capital</a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/shipping"> Shipping</a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/flow">
Ecommerce automation</a
>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/fulfillment"> Fulfillment</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="nav-bar">
<ul class="main-nav-list nav-right">
<li>
<a class="main-nav-link" href="https://www.shopify.com/pricing"
>Pricing</a
>
</li>
<li class="nav-item dropdown start-dropdown">
<a
href="#"
class="nav-link"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
>Learn <ion-icon name="chevron-down-outline"></ion-icon
></a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li class="dropdown-item">
<a href="https://help.shopify.com/en">Help center</a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/products">All products</a>
</li>
<li class="dropdown-item">
Blog <ion-icon name="chevron-forward-outline"></ion-icon>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/learn">Business Courses</a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/blog/topics/guides"
>Guides
</a>
</li>
<li class="dropdown-item">
<a
href="https://community.shopify.com/c/Shopify-Community/ct-p/en?utm_campaign=navbar&utm_content=en&utm_medium=web&utm_source=shopify"
>Shopify Community
</a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/tools">Free tools </a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/podcasts">Podcasts </a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/encyclopedia"
>Business encyclopedia
</a>
</li>
<li class="dropdown-item">
<a
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>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/research/future-of-commerce"
>Research
</a>
</li>
<li class="dropdown-item">
<a href="https://www.shopify.com/editions">Editons </a>
</li>
</ul>
</li>
<li>
<a class="main-nav-link" href="https://www.shopify.com/login"
>Log in
</a>
</li>
<li>
<a class="main-nav-link nav-cta" href="https://bit.ly/3zci8OE"
>Start free trial</a
>
</li>
</ul>
</div>
</nav>
</header>
<!-- ////////////////////// -->
<!-- ////////////////////// -->
<!-- Hero Section -->
<section class="hero-section grid grid-2">
<div class="hero-section-text">
<h1 class="hero-head heading-primary">
If you can dream it, you can sell it with Shopify
</h1>
<p class="hero-title">Build your business here. Take it anywhere.</p>
<form action="#" id="userSignup">
<input
type="email"
id="email"
name="signup-email"
placeholder="Enter your email address"
pattern="^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}"
maxlength="50"
title="please enter a correct email address: [email protected]"
required
/>
<button
type="submit"
onclick="validation()"
id="submit"
class="hero-btn"
>
Start free trial
</button>
</form>
<p class="hero-text">
Try Shopify free for 3 days, no credit card required. By entering your
email, you agree to receive marketing emails from Shopify.
</p>
</div>
<div class="hero-section-vid flex flex-col">
<div>
<img
class="hero-img"
src="imgs/hero/hero-small.webp"
alt="Two people in a stock working on a computer"
/>
<ion-icon class="show-modal btn-play" name="play-circle"></ion-icon>
</div>
<button class="close-modal hidden">×</button>
<video
class="hero-vid hidden"
src="imgs/hero/Shopify Explainer Video (Helpful!) What is Shopify and How Does it Work.mp4"
type="video/mp4"
controls
></video>
<div class="overlay hidden"></div>
</div>
</section>
<!-- <video
src="imgs/hero/Shopify Explainer Video (Helpful!) What is Shopify and How Does it Work.mp4"
poster="imgs/hero/hero-large.png"
controls
></video> -->
<!-- ////////////////////// -->
<!-- ////////////////////// -->
<!-- Features01-Section -->
<section class="features01 container">
<h2 class="features01-head heading-secondary">
Discover why millions of entrepreneurs choose Shopify to build their
business—from Hello World to IPO.
</h2>
<div class="sliderContainer container">
<div class="slider single-item">
<div class="slider-item slide-1">
<img
class="slider-img-1"
src="imgs/features-01/1-store-builder-desktop-large.webp"
alt=""
/>
</div>
<div class="slider-item slide-2">
<img
class="slider-img-2"
src="imgs/features-01/2-sense-desktop-large.webp"
alt=""
/>
</div>
<div class="slider-item slide-3">
<img
class="slider-img-3"
src="imgs/features-01/5-app-store-desktop-large.webp"
alt=""
/>
</div>
</div>
<div class="progressBarContainer">
<div>
<span data-slick-index="0" class="progressBar"></span>
</div>
<div>
<span data-slick-index="1" class="progressBar"></span>
</div>
<div>
<span data-slick-index="2" class="progressBar"></span>
</div>
</div>
</div>
<div class="features-grid grid grid-3">
<div>
<div class="bar"></div>
<div class="features-title">Store builder</div>
<div class="features-text">
Bring your vision to life with our easy-to-use store creator. No
coding expertise required—just your next big idea.
</div>
<a
class="features-link flex"
href="https://www.shopify.com/website/builder"
>Build the brand you want<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
<div>
<div class="bar"></div>
<div class="features-title">Themes</div>
<div class="features-text">
Select from hundreds of customizable templates crafted by a
community of world-class designers.
</div>
<a class="features-link flex" href="https://themes.shopify.com/"
>Explore more Themes<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
<div>
<div class="bar"></div>
<div class="features-title">App store</div>
<div class="features-text">
Add more features and functionality to your online store with app
extensions from trusted Shopify partners.
</div>
<a class="features-link flex" href="https://www.shopify.com/market"
>Marketing made easy<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
</div>
</section>
<!-- ////////////////////// -->
<!-- features02 Section -->
<section class="features02 container">
<div class="features02-content01">
<div class="features02-text01">
<p class="features02-title">Connect with customers everywhere</p>
<p class="features02-text">
Sell online, in person, or both with the marketing tools, social
integrations, and sales channels you need to get your products in
front of customers—and out the door.
</p>
<a class="features-link flex" href="https://www.shopify.com/market"
>Marketing made easy<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
<img
class="features02-img01"
src="imgs/features-02/1-sell-large.png"
alt="online store card with social media icons and emojis"
/>
</div>
<div class="features02-content02">
<img
class="features02-img02"
src="imgs/features-02/2-manage-large.webp"
alt="Manage online store controll panel"
/>
<div class="features02-text02">
<p class="features02-title">Everything you need to succeed</p>
<p class="features02-text">
Manage inventory, track payments, and view real-time business
insights from a single dashboard. We’ve built all the tools you
need, so you can focus on building your business.
</p>
<a class="features-link flex" href="https://www.shopify.com/manage"
>Do more from day one<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
</div>
</section>
<!-- ////////////////////// -->
<!-- Testimonials Section-->
<section class="testimonials-section container">
<div class="mySlides">
<div class="testimonials-content flex">
<div class="testimonials-text-content">
<p class="testimonials-title">
Meet the merchants who chose Shopify
</p>
<blockquote class="testimonial">
“We’ve been able to build something in 3 years that a lot of
brands haven’t actually gotten to in 10 years.”
</blockquote>
<p class="testimonial-position">Chioma | Co-Founder & CEO</p>
</div>
<div class="testimonials-img-content flex-col">
<img
class="testimonial-img"
src="imgs/testimonials/1-cee-cees-closet-large.png"
alt="Chioma the ceo of cee-cees"
/>
<img
class="testimonial-logo"
src="imgs/testimonials/1-cee-cees-closet-logo.svg"
alt=" ccee-cees logo"
/>
</div>
</div>
</div>
<div class="mySlides">
<div class="testimonials-content flex">
<div class="testimonials-text-content">
<p class="testimonials-title">
Meet the merchants who chose Shopify
</p>
<blockquote class="testimonial">
“Shopify just gives me a snapshot of what I need to do and where
my business stands. I know what I need to take care of. That helps
me give more time to the actual creation of my work.”
</blockquote>
<p class="testimonial-position">Risa | Owner</p>
</div>
<div class="testimonials-img-content flex-col">
<img
class="testimonial-img"
src="imgs/testimonials/2-papallama-large.png"
alt="papallama Owner"
/>
<img
class="testimonial-logo"
src="imgs/testimonials/2-papallama-logo.svg"
alt=" papallama-logo"
/>
</div>
</div>
</div>
<div class="mySlides">
<div class="testimonials-content flex">
<div class="testimonials-text-content">
<p class="testimonials-title">
Meet the merchants who chose Shopify
</p>
<blockquote class="testimonial">
“I chose to use Shopify because it was a no brainer! You don’t
have to hire a fancy web designer. I was able to add my photos
onto my store and have it up and running within an hour!”
</blockquote>
<p class="testimonial-position">Chef J. Jackson | Founder</p>
</div>
<div class="testimonials-img-content flex-col">
<img
class="testimonial-img"
src="imgs/testimonials/3-chef-j-jackson-large.png"
alt="chef-j-jackson"
/>
<img
class="testimonial-logo"
src="imgs/testimonials/3-chef-j-jackson-logo.svg"
alt=" chef-j-jackson-logo"
/>
</div>
</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</section>
<!-- ///////////////// -->
<!-- Edition Section -->
<section class="edition-section container">
<div class="edition-content flex">
<img
class="edition-img"
src="imgs/edition/editions-small.gif"
alt="papallama Owner"
/>
<div class="edition-text-content">
<p class="edition-head">Shopify Editions</p>
<p class="edition-text">
Welcome to Shopify Editions, where twice a year we pull back the
curtain and show you the hundreds of updates we’re making as we go
all-in on the Connect to Consumer era of business.
</p>
<a
class="features-link flex"
href="https://www.shopify.com/editions/summer2022"
>Take a peek<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
</div>
</section>
<!-- ///////////////////// -->
<!-- Help Section -->
<section class="help-section flex">
<div class="help-text-content flex flex-col">
<p class="help-head">The help you need, when you need it</p>
<div class="help-text-grid grid grid-2">
<div class="help-text-content-grid">
<p class="help-title">Shopify Blog</p>
<p class="help-text">
Get all the marketing and business strategy tips you need to help
you run an online business.
</p>
<a class="features-link" href="https://www.shopify.com/blog"
>Read<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
<div class="help-text-content-grid">
<p class="help-title">Online Courses</p>
<p class="help-text">
Learn from the best with instant access to lessons from successful
entrepreneurs around the world.
</p>
<a class="features-link" href="https://www.shopify.com/learn"
>Learn<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
<div class="help-text-content-grid">
<p class="help-title">Our Community</p>
<p class="help-text">
Connect with a community of brands, partners, and fellow merchants
who understand Shopify.
</p>
<a
class="features-link"
href="https://community.shopify.com/c/shopify-community/ct-p/en"
>Connect<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
<div class="help-text-content-grid">
<p class="help-title">Help Center</p>
<p class="help-text">
Find answers in a flash with your dedicated resource for articles
and videos from our Support team.
</p>
<a class="features-link" href="https://help.shopify.com/en"
>Get Help<ion-icon
name="arrow-forward-outline"
class="arrow-icon"
></ion-icon
></a>
</div>
</div>
</div>
<img
class="help-img"
src="imgs/help/help-desktop-small.webp"
alt="A man working on laptop"
/>
</section>
<!-- ///////////////////// -->
<!-- CTA Section -->
<section class="cta-section container flex flex-col">
<p class="cta-head">Grow your business here</p>
<p class="cta-text">
Whether you want to sell products down the street or around the world,
we have all the tools you need.
</p>
<button class="cta-btn">Start free trial</button>
</section>
<footer class="footer-main">
<div class="footer-top container">
<div class="footer-nav">
<ul class="footer-nav-list flex">
<li class="footer-nav-item">
<a href="https://www.shopify.com/about" class="footer-nav-link"
>About</a
>
</li>
<li class="footer-nav-item">
<a href="https://www.shopify.com/careers" class="footer-nav-link"
>Careers</a
>
</li>
<li class="footer-nav-item">
<a href="https://news.shopify.com/" class="footer-nav-link"
>Press and Media</a
>
</li>
<li class="footer-nav-item">
<a href="https://www.shopify.com/plus" class="footer-nav-link"
>Shopify Plus</a
>
</li>
<li class="footer-nav-item">
<a href="https://www.shopify.com/sitemap" class="footer-nav-link"
>Sitemap</a
>
</li>
</ul>
</div>
<div class="footer-grid grid">
<div class="online-store flex flex-col">
<p class="footer-title">ONLINE STORE</p>
<ul class="footer-list">
<li class="footer-grid-item">
<a
href="https://www.shopify.com/online"
class="footer-grid-link"
>Sell online</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/examples"
class="footer-grid-link"
>Examples</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/website/builder"
class="footer-grid-link"
>Website builder</a
>
</li>
<li class="footer-grid-item">
<a href="https://www.shopify.com/tour" class="footer-grid-link"
>Online retail</a
>
</li>
</ul>
</div>
<div class="Footer-features flex flex-col">
<ul class="footer-list">
<li class="footer-grid-item">
<a
href="https://www.shopify.com/tour/ecommerce-website"
class="footer-grid-link"
>Ecommerce website</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/domains"
class="footer-grid-link"
>Domain names</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/tour/shopping-cart"
class="footer-grid-link"
>Shopping cart</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/tour/ecommerce-hosting"
class="footer-grid-link"
>Ecommerce hosting</a
>
</li>
</ul>
</div>
<div class="Footer-features flex flex-col">
<ul class="footer-list">
<li class="footer-grid-item">
<a
href="https://www.shopify.com/mobile"
class="footer-grid-link"
>Mobile commerce</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/online-store"
class="footer-grid-link"
>Online store builder</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/dropshipping"
class="footer-grid-link"
>Dropshipping Business</a
>
</li>
<li class="footer-grid-item">
<a href="https://themes.shopify.com/" class="footer-grid-link"
>Store themes</a
>
</li>
</ul>
</div>
<div class="point-of-sale flex flex-col">
<p class="footer-title">Point of sale</p>
<ul class="footer-list">
<li class="footer-grid-item">
<a href="https://www.shopify.com/pos" class="footer-grid-link"
>Point of sale</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/pos/features"
class="footer-grid-link"
>Features</a
>
</li>
<li class="footer-grid-item">
<a href="https://hardware.shopify.com/" class="footer-grid-link"
>Hardware</a
>
</li>
</ul>
</div>
<div class="support flex flex-col">
<p class="footer-title">Support</p>
<ul class="footer-list">
<li class="footer-grid-item">
<a
href="https://help.shopify.com/en/questions"
class="footer-grid-link"
>24/7 support</a
>
</li>
<li class="footer-grid-item">
<a href="https://help.shopify.com/en" class="footer-grid-link"
>Shopify Help Center</a
>
</li>
<li class="footer-grid-item">
<a
href="https://community.shopify.com/c/Shopify-Community/ct-p/en?utm_campaign=footer&utm_content=en&utm_medium=web&utm_source=shopify"
class="footer-grid-link"
>Shopify Community</a
>
</li>
<li class="footer-grid-item">
<a
href="https://shopify.dev/api?shpxid=18081a5a-F00A-456B-6981-568D7BD49182"
class="footer-grid-link"
>API documentation</a
>
</li>
<li class="footer-grid-item">
<a href="https://www.shopify.com/tools" class="footer-grid-link"
>Free tools</a
>
</li>
<li class="footer-grid-item">
<a href="https://burst.shopify.com/" class="footer-grid-link"
>Free stock photos</a
>
</li>
<li class="footer-grid-item">
<a
href="https://exchangemarketplace.com/?shpxid=18081a5a-F00A-456B-6981-568D7BD49182"
class="footer-grid-link"
>Websites for sale</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/tools/logo-maker"
class="footer-grid-link"
>Logo Maker</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/tools/business-name-generator"
class="footer-grid-link"
>Business name generator</a
>
</li>
<li class="footer-grid-item">
<a
href="https://www.shopify.com/research/future-of-commerce"
class="footer-grid-link"
>Research</a
>
</li>
<li class="footer-grid-item">
<a href="https://www.shopify.com/legal" class="footer-grid-link"
>Legal</a
>
</li>
</ul>
</div>
<div class="about-shopify flex flex-col">
<p class="footer-title">Shopify</p>
<ul class="footer-list">
<li class="footer-grid-item">
<a
href="https://www.shopify.com/contact"
class="footer-grid-link"
>Contact</a
>
</li>
<li class="footer-grid-item">
<a