-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1150 lines (1141 loc) · 47.1 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="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" />
<!-- You can use any 1 of the following to apply tailwind to your website -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> -->
<title>Fitness Website</title>
</head>
<body>
<!-- Navbar -->
<header class="text-gray-400 bg-gray-900 body-font">
<div
class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"
>
<a
class="flex title-font font-medium items-center text-white mb-4 md:mb-0"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-10 h-10 text-white p-2 bg-indigo-500 rounded-full"
viewBox="0 0 24 24"
>
<path
d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"
></path>
</svg>
<span class="ml-3 text-xl">S-Fitness</span>
</a>
<nav
class="md:mr-auto md:ml-4 md:py-1 md:pl-4 md:border-l md:border-gray-700 flex flex-wrap items-center text-base justify-center"
>
<a href="#home" class="mr-5 hover:text-white">Home</a>
<a href="#stat" class="mr-5 hover:text-white">About</a>
<a href="#services" class="mr-5 hover:text-white">Services</a>
<a href="#contact" class="mr-5 hover:text-white">Contact</a>
</nav>
<a href="#prices"
><button
class="inline-flex items-center bg-gray-800 border-0 py-1 px-3 focus:outline-none hover:bg-gray-700 rounded text-base mt-4 md:mt-0"
>
Enroll Now
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-1"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg></button
></a>
</div>
</header>
<!-- Hero Section -->
<section class="text-gray-400 bg-gray-900 body-font" id="home">
<div
class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center"
>
<div
class="lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center"
>
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-white"
>
Let's get ready to be fit <br class="hidden lg:inline-block" />Let's
hit the gym
</h1>
<p class="mb-8 leading-relaxed">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti, eius. Harum aut laudantium magni enim, expedita assumenda earum pariatur magnam veniam qui consequatur porro facere cumque molestiae illo dolore recusandae.
</p>
<div class="flex justify-center">
<button
class="inline-flex text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg"
>
Enroll Now
</button>
<button
class="ml-4 inline-flex text-gray-400 bg-gray-800 border-0 py-2 px-6 focus:outline-none hover:bg-gray-700 hover:text-white rounded text-lg"
>
Our Services
</button>
</div>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6">
<img
class="object-cover object-center rounded"
alt="hero"
src="https://source.unsplash.com/720x600?fitness,gym"
/>
</div>
</div>
</section>
<!-- Features -->
<section class="text-gray-600 body-font" id="services">
<div class="container px-5 py-24 mx-auto">
<div class="text-center mb-20">
<h1
class="sm:text-3xl text-2xl font-medium text-center title-font text-gray-900 mb-4"
>
Our Services
</h1>
<p class="text-base leading-relaxed xl:w-2/4 lg:w-3/4 mx-auto">
We provide the following services. We've lined up many
</p>
</div>
<div class="flex flex-wrap lg:w-4/5 sm:mx-auto sm:mb-2 -mx-2">
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium"
>Fitness First Programs</span
>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium"
>Group Exercise Studio</span
>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium"
>Aerobics Classes</span
>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium">1:1 Personal Training Counter</span>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium"
>Cycling Studio</span
>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium"
>Women's Only Studio</span
>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium"
>Zumba Aerobics</span
>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium">Member's Lounge</span>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium">Luxurious Changing Room</span>
</div>
</div>
<div class="p-2 sm:w-1/2 w-full">
<div class="bg-gray-100 rounded flex p-4 h-full items-center">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="3"
class="text-indigo-500 w-6 h-6 flex-shrink-0 mr-4"
viewBox="0 0 24 24"
>
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
<span class="title-font font-medium">Security</span>
</div>
</div>
</div>
<button
class="flex mx-auto mt-16 text-white bg-indigo-500 border-0 py-2 px-8 focus:outline-none hover:bg-indigo-600 rounded text-lg"
>
Get Started
</button>
</div>
</section>
<!-- Statistics -->
<section class="text-gray-400 bg-gray-900 body-font" id="stat">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h1
class="sm:text-3xl text-2xl font-medium title-font mb-4 text-white"
>
Our Currrent Statistics
</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ducimus magnam magni a aperiam error voluptates harum! Pariatur, vel. Unde quae quas commodi, odit molestias odio, eligendi soluta asperiores assumenda quo facere eos? Delectus cumque unde, at quaerat aperiam non, quasi earum exercitationem omnis similique voluptatibus hic! Voluptatum nesciunt dolorum numquam.
</p>
</div>
<div class="flex flex-wrap -m-4 text-center">
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div class="border-2 border-gray-800 px-4 py-6 rounded-lg">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="text-indigo-400 w-12 h-12 mb-3 inline-block"
viewBox="0 0 24 24"
>
<path d="M8 17l4 4 4-4m-4-5v9"></path>
<path
d="M20.88 18.09A5 5 0 0018 9h-1.26A8 8 0 103 16.29"
></path>
</svg>
<h2 class="title-font font-medium text-3xl text-white">2.7K</h2>
<p class="leading-relaxed">Downloads</p>
</div>
</div>
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div class="border-2 border-gray-800 px-4 py-6 rounded-lg">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="text-indigo-400 w-12 h-12 mb-3 inline-block"
viewBox="0 0 24 24"
>
<path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"></path>
<circle cx="9" cy="7" r="4"></circle>
<path d="M23 21v-2a4 4 0 00-3-3.87m-4-12a4 4 0 010 7.75"></path>
</svg>
<h2 class="title-font font-medium text-3xl text-white">1.3K</h2>
<p class="leading-relaxed">Users</p>
</div>
</div>
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div class="border-2 border-gray-800 px-4 py-6 rounded-lg">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="text-indigo-400 w-12 h-12 mb-3 inline-block"
viewBox="0 0 24 24"
>
<path d="M3 18v-6a9 9 0 0118 0v6"></path>
<path
d="M21 19a2 2 0 01-2 2h-1a2 2 0 01-2-2v-3a2 2 0 012-2h3zM3 19a2 2 0 002 2h1a2 2 0 002-2v-3a2 2 0 00-2-2H3z"
></path>
</svg>
<h2 class="title-font font-medium text-3xl text-white">74</h2>
<p class="leading-relaxed">Teachers</p>
</div>
</div>
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div class="border-2 border-gray-800 px-4 py-6 rounded-lg">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="text-indigo-400 w-12 h-12 mb-3 inline-block"
viewBox="0 0 24 24"
>
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>
</svg>
<h2 class="title-font font-medium text-3xl text-white">46</h2>
<p class="leading-relaxed">Places</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="text-gray-600 body-font" id="feedback">
<div class="container px-5 py-24 mx-auto">
<h1
class="text-3xl font-medium title-font text-gray-900 mb-12 text-center"
>
Testimonials
</h1>
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/2 w-full">
<div class="h-full bg-gray-100 p-8 rounded">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="block w-5 h-5 text-gray-400 mb-4"
viewBox="0 0 975.036 975.036"
>
<path
d="M925.036 57.197h-304c-27.6 0-50 22.4-50 50v304c0 27.601 22.4 50 50 50h145.5c-1.9 79.601-20.4 143.3-55.4 191.2-27.6 37.8-69.399 69.1-125.3 93.8-25.7 11.3-36.8 41.7-24.8 67.101l36 76c11.6 24.399 40.3 35.1 65.1 24.399 66.2-28.6 122.101-64.8 167.7-108.8 55.601-53.7 93.7-114.3 114.3-181.9 20.601-67.6 30.9-159.8 30.9-276.8v-239c0-27.599-22.401-50-50-50zM106.036 913.497c65.4-28.5 121-64.699 166.9-108.6 56.1-53.7 94.4-114.1 115-181.2 20.6-67.1 30.899-159.6 30.899-277.5v-239c0-27.6-22.399-50-50-50h-304c-27.6 0-50 22.4-50 50v304c0 27.601 22.4 50 50 50h145.5c-1.9 79.601-20.4 143.3-55.4 191.2-27.6 37.8-69.4 69.1-125.3 93.8-25.7 11.3-36.8 41.7-24.8 67.101l35.9 75.8c11.601 24.399 40.501 35.2 65.301 24.399z"
></path>
</svg>
<p class="leading-relaxed mb-6">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam enim soluta, maxime illo rem perferendis consequatur eaque ea aliquam, tempora, nemo dolorum magnam consequuntur quidem odio. Ipsum vel aspernatur facere sed eligendi.
</p>
<a class="inline-flex items-center">
<img
alt="testimonial"
src="https://source.unsplash.com/106x106?human"
class="w-12 h-12 rounded-full flex-shrink-0 object-cover object-center"
/>
<span class="flex-grow flex flex-col pl-4">
<span class="title-font font-medium text-gray-900"
>Holden Caulfield</span
>
<span class="text-gray-500 text-sm">Software Developer</span>
</span>
</a>
</div>
</div>
<div class="p-4 md:w-1/2 w-full">
<div class="h-full bg-gray-100 p-8 rounded">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="block w-5 h-5 text-gray-400 mb-4"
viewBox="0 0 975.036 975.036"
>
<path
d="M925.036 57.197h-304c-27.6 0-50 22.4-50 50v304c0 27.601 22.4 50 50 50h145.5c-1.9 79.601-20.4 143.3-55.4 191.2-27.6 37.8-69.399 69.1-125.3 93.8-25.7 11.3-36.8 41.7-24.8 67.101l36 76c11.6 24.399 40.3 35.1 65.1 24.399 66.2-28.6 122.101-64.8 167.7-108.8 55.601-53.7 93.7-114.3 114.3-181.9 20.601-67.6 30.9-159.8 30.9-276.8v-239c0-27.599-22.401-50-50-50zM106.036 913.497c65.4-28.5 121-64.699 166.9-108.6 56.1-53.7 94.4-114.1 115-181.2 20.6-67.1 30.899-159.6 30.899-277.5v-239c0-27.6-22.399-50-50-50h-304c-27.6 0-50 22.4-50 50v304c0 27.601 22.4 50 50 50h145.5c-1.9 79.601-20.4 143.3-55.4 191.2-27.6 37.8-69.4 69.1-125.3 93.8-25.7 11.3-36.8 41.7-24.8 67.101l35.9 75.8c11.601 24.399 40.501 35.2 65.301 24.399z"
></path>
</svg>
<p class="leading-relaxed mb-6">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Maxime suscipit laudantium, praesentium nesciunt explicabo voluptatem rerum est minima perferendis quibusdam doloribus. Neque temporibus voluptatibus laborum natus commodi dolorem ab doloremque ullam sunt.
</p>
<a class="inline-flex items-center">
<img
alt="testimonial"
src="https://source.unsplash.com/107x107?human"
class="w-12 h-12 rounded-full flex-shrink-0 object-cover object-center"
/>
<span class="flex-grow flex flex-col pl-4">
<span class="title-font font-medium text-gray-900"
>Alper Kamu</span
>
<span class="text-gray-500 text-sm">Yoga Trainee</span>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing -->
<section
class="text-gray-400 bg-gray-900 body-font overflow-hidden"
id="prices"
>
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h1
class="sm:text-4xl text-3xl font-medium title-font mb-2 text-white"
>
Pricing
</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">
You won't regret once you get enrolled.
</p>
<div
class="flex mx-auto border-2 border-indigo-500 rounded overflow-hidden mt-6"
>
<button
class="py-1 px-4 bg-indigo-500 text-white focus:outline-none"
>
Monthly
</button>
<button class="py-1 px-4 text-gray-300 focus:outline-none">
Annually
</button>
</div>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-gray-700 flex flex-col relative overflow-hidden"
>
<h2
class="text-sm tracking-widest text-gray-400 title-font mb-1 font-medium"
>
START
</h2>
<h1
class="text-5xl text-white pb-4 mb-4 border-b border-gray-800 leading-none"
>
Free
</h1>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor
</p>
<button
class="flex items-center mt-auto text-white bg-gray-800 border-0 py-2 px-4 w-full focus:outline-none hover:bg-gray-700 rounded"
>
Get Started
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-400 mt-3">
Literally you probably haven't heard of them getting perfectly fit and fine.
</p>
</div>
</div>
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-indigo-500 flex flex-col relative overflow-hidden"
>
<span
class="bg-indigo-500 text-white px-3 py-1 tracking-widest text-xs absolute right-0 top-0 rounded-bl"
>POPULAR</span
>
<h2
class="text-sm tracking-widest text-gray-400 title-font mb-1 font-medium"
>
PRO
</h2>
<h1
class="text-5xl text-white leading-none flex items-center pb-4 mb-4 border-b border-gray-800"
>
<span>$38</span>
<span class="text-lg ml-1 font-normal text-gray-400">/mo</span>
</h1>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor sit
</p>
<p class="flex items-center text-gray-400 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor sit amet
</p>
<button
class="flex items-center mt-auto text-white bg-indigo-500 border-0 py-2 px-4 w-full focus:outline-none hover:bg-indigo-600 rounded"
>
Subscribe Now
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-400 mt-3">
Literally you probably haven't heard of them getting perfectly fit and fine.
</p>
</div>
</div>
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-gray-700 flex flex-col relative overflow-hidden"
>
<h2
class="text-sm tracking-widest text-gray-400 title-font mb-1 font-medium"
>
BUSINESS
</h2>
<h1
class="text-5xl text-white leading-none flex items-center pb-4 mb-4 border-b border-gray-800"
>
<span>$56</span>
<span class="text-lg ml-1 font-normal text-gray-400">/mo</span>
</h1>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor sit
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor sit amet
</p>
<button
class="flex items-center mt-auto text-white bg-gray-800 border-0 py-2 px-4 w-full focus:outline-none hover:bg-gray-700 rounded"
>
Subscribe Now
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-400 mt-3">
Literally you probably haven't heard of them getting perfectly fit and fine.
</p>
</div>
</div>
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-gray-700 flex flex-col relative overflow-hidden"
>
<h2
class="text-sm tracking-widest text-gray-400 title-font mb-1 font-medium"
>
SPECIAL
</h2>
<h1
class="text-5xl text-white leading-none flex items-center pb-4 mb-4 border-b border-gray-800"
>
<span>$72</span>
<span class="text-lg ml-1 font-normal text-gray-400">/mo</span>
</h1>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor sit
</p>
<p class="flex items-center text-gray-400 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem, ipsum dolor
</p>
<p class="flex items-center text-gray-400 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Lorem ipsum dolor sit amet
</p>
<button
class="flex items-center mt-auto text-white bg-gray-800 border-0 py-2 px-4 w-full focus:outline-none hover:bg-gray-700 rounded"
>
Contact Us
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-400 mt-3">
Literally you probably haven't heard of them getting perfectly fit and fine.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Us -->
<section class="text-gray-600 body-font relative" id="contact">
<div class="container px-5 py-24 mx-auto flex sm:flex-nowrap flex-wrap">
<div
class="lg:w-2/3 md:w-1/2 bg-gray-300 rounded-lg overflow-hidden sm:mr-10 p-10 flex items-end justify-start relative"
>
<iframe
width="100%"
height="100%"
class="absolute inset-0"
frameborder="0"
title="map"
marginheight="0"
marginwidth="0"
scrolling="no"
src="https://maps.google.com/maps?width=100%&height=600&hl=en&q=%C4%B0zmir+(My%20Business%20Name)&ie=UTF8&t=&z=14&iwloc=B&output=embed"
style="filter: grayscale(1) contrast(1.2) opacity(0.4)"
></iframe>
<div class="bg-white relative flex flex-wrap py-6 rounded shadow-md">
<div class="lg:w-1/2 px-6">
<h2
class="title-font font-semibold text-gray-900 tracking-widest text-xs"
>
ADDRESS
</h2>
<p class="mt-1">
ABC Lane, CDE Street, Blank City, Free Country.
</p>
</div>
<div class="lg:w-1/2 px-6 mt-4 lg:mt-0">
<h2
class="title-font font-semibold text-gray-900 tracking-widest text-xs"
>
EMAIL
</h2>
<a class="text-indigo-500 leading-relaxed">example@email.com</a>
<h2
class="title-font font-semibold text-gray-900 tracking-widest text-xs mt-4"
>
PHONE
</h2>
<p class="leading-relaxed">123-456-7890</p>
</div>
</div>
</div>
<div
class="lg:w-1/3 md:w-1/2 bg-white flex flex-col md:ml-auto w-full md:py-8 mt-8 md:mt-0"
>
<h2 class="text-gray-900 text-lg mb-1 font-medium title-font">
Contact Us
</h2>
<p class="leading-relaxed mb-5 text-gray-600">
Send us your feedback or message us about your query. We'll reach you out soon.