forked from Shohail009/tailwindCSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1023 lines (933 loc) · 53.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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<nav class="flex bg-black w-100 h-auto justify-center">
<div class="flex container px-5 justify-between items-center">
<div class="flex items-center space-x-7">
<a href="#" class="flex items-center py-4 px-2 font-extrabold text-blue-400 text-3xl">
<span class="text-white">Tail</span>Spot
</a>
<!-- Primary Navbar items -->
<div class="hidden lg:flex px-6">
<a href="index.html"
class="py-4 px-4 text-gray-200 font-semibold hover:text-white transition duration-300">Home</a>
<a href="#feature"
class="py-4 px-4 text-gray-200 font-semibold hover:text-white transition duration-300">Features</a>
<a href="#portfolio"
class="py-4 px-4 text-gray-200 font-semibold hover:text-white transition duration-300">Portfolio</a>
<a href="#team"
class="py-4 px-4 text-gray-200 font-semibold hover:text-white transition duration-300">Team</a>
<a href="#pricing"
class="py-4 px-4 text-gray-200 font-semibold hover:text-white transition duration-300">Pricing</a>
<a href="#contact"
class="py-4 px-4 text-gray-200 font-semibold hover:text-white transition duration-300">Contact</a>
</div>
</div>
<!-- Secondary Navbar items -->
<div class="hidden lg:flex space-x-3 ">
<a href=""
class="py-2 px-6 font-medium text-white rounded hover:bg-indigo-700 hover:text-white transition duration-300">Log
In</a>
<a href=""
class="py-2 px-6 font-medium text-white bg-indigo-600 hover:bg-indigo-700 rounded transition duration-300">Sign
Up</a>
</div>
<!-- Mobile menu button -->
<div class="lg:hidden flex items-center">
<button class="outline-none mobile-menu-button">
<svg class=" w-6 h-6 text-white hover:text-green-500 " x-show="!showMenu" fill="none" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</nav>
<div class="bg-black mobile-menu hidden">
<ul class="">
<li><a href="index.html"
class="block text-white text-center text-md px-2 py-4 hover:bg-green-500 transition duration-300">Home</a>
</li>
<li><a href="#feature"
class="block text-white text-center text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Features</a>
</li>
<li><a href="#about"
class="block text-white text-center text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Portfolio</a>
</li>
<li><a href="#team"
class="block text-white text-center text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Team</a>
</li>
<li><a href="#pricing"
class="block text-white text-center text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Pricing</a>
</li>
<li><a href="#contact"
class="block text-white text-center text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Contact</a>
</li>
</ul>
</div>
<script>
const btn = document.querySelector("button.mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
btn.addEventListener("click", () => {
menu.classList.toggle("hidden");
});
</script>
<div class="flex flex-wrap lg:flex-nowrap relative bg-white overflow-hidden justify-center container px-5 mx-auto">
<div class="w-100 lg:w-1/2">
<div class="relative z-10 pb-8 bg-white sm:pb-16 md:pb-20 lg:pb-28 xl:pb-32">
<main class="mx-auto sm:mt-12 md:mt-16 lg:mt-20 lg:pr-8 xl:mt-28">
<div class="text-center lg:text-left" style="margin-top: 7rem;">
<h1 class="tracking-tight font-bold text-gray-900 text-5xl sm:text-6xl">Data to enrich your<br>
<span class="text-indigo-600">online business</span>
</h1>
<p class="mt-4 text-base text-gray-500 sm:mt-5 sm:text-lg sm:mx-auto md:mt-5">
We are always availed to consult on taking your<br> online business to the next level so you can stay
<br>competitive in the global world.
</p>
<div class="mt-8 sm:mt-8 flex justify-center lg:justify-start" style="margin-top: 5rem;">
<div class="rounded-md shadow">
<a href="#"
class="w-full flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 md:py-4 md:text-lg md:px-10">
Get started
</a>
</div>
<div class="ml-3">
<a href="#pricing"
class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-700 bg-indigo-100 hover:bg-indigo-200 md:py-4 md:text-lg md:px-10">
View Pricing
</a>
</div>
</div>
</div>
</main>
</div>
</div>
<div class="md:w-2/3 lg:w-1/2 flex jusitify-center items-center">
<img class="w-full h-auto" src="images/Ideation Session Whiteboarding.svg" alt="">
</div>
</div>
<!-- statistic -->
<section class="text-gray-600 bg-gray-200 body-font">
<div class="container px-5 py-6 mx-auto">
<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="px-4 py-6 rounded-lg ">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="text-indigo-500 w-16 h-16 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 pt-2 font-bold text-4xl text-gray-900">2.7K</h2>
<p class="leading-relaxed text-2xl">Downloads</p>
</div>
</div>
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div
class="px-4 py-6 rounded-lg">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="text-indigo-500 w-16 h-16 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 pt-2 font-bold text-4xl text-gray-900">1.3K</h2>
<p class="leading-relaxed text-2xl">Users</p>
</div>
</div>
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div
class="px-4 py-6 rounded-lg">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="text-indigo-500 w-16 h-16 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 pt-2 font-bold text-4xl text-gray-900">7.4K</h2>
<p class="leading-relaxed text-2xl">Files</p>
</div>
</div>
<div class="p-4 md:w-1/4 sm:w-1/2 w-full">
<div class="px-4 py-6 rounded-lg">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="text-indigo-500 w-16 h-16 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 pt-2 font-bold text-4xl text-gray-900">4.6K</h2>
<p class="leading-relaxed text-2xl">Places</p>
</div>
</div>
</div>
</div>
</section>
<!-- FEATURE -->
<section id="feature" class="text-gray-600 bg-gray-100 body-font">
<div class="container px-5 py-20 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h2 class="sm:text-6xl text-4xl font-semibold title-font mb-4 text-gray-900">Features</h2>
<p class="lg:w-2/4 mx-auto leading-relaxed text-md">Our landing page template is responsive, which means you
just have to set it up once and you will get excellent results every time.</p>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3" style="min-height: 300px;">
<div class="flex rounded-lg h-full bg-white p-8 flex-col bg-white">
<div class="flex items-center mb-3">
<div
class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full bg-indigo-500 text-white flex-shrink-0 hover:bg-indigo-900">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
</div>
<h2 class="text-gray-900 text-xl title-font font-medium">Tracking Platform</h2>
</div>
<div class="flex-grow">
<p class="leading-relaxed text-gray-900 text-base mt-4">It includes everything your team requires to keep
track of their time and on time. The platform timesheets may be checked and authorized with a single
click.</p>
<a class="mt-3 text-indigo-500 inline-flex items-center cursor-pointer bg-blue hover:text-indigo-700"
href="#">Learn More
</a>
</div>
</div>
</div>
<div class="p-4 md:w-1/3" style="min-height: 300px;">
<div class="flex rounded-lg h-full bg-white p-8 flex-col bg-white">
<div class="flex items-center mb-3">
<div
class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full bg-indigo-500 text-white flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</div>
<h2 class="text-gray-900 text-xl title-font font-medium">Onboarding tasks</h2>
</div>
<div class="flex-grow">
<p class="leading-relaxed text-base mt-4">A successful digital HR onboarding process includes numerous
team members beyond the first day. You can do assign tasks using employee onboarding tools</p>
<a class="mt-3 text-indigo-500 text-bold inline-flex items-center cursor-pointer hover:text-indigo-900 text-extrabold"
href="#">Learn More
</a>
</div>
</div>
</div>
<div class="p-4 md:w-1/3" style="min-height: 300px;">
<div class="flex rounded-lg h-full bg-white p-8 flex-col">
<div class="flex items-center mb-3">
<div
class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full bg-indigo-500 text-white flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<circle cx="6" cy="6" r="3"></circle>
<circle cx="6" cy="18" r="3"></circle>
<path d="M20 4L8.12 15.88M14.47 14.48L20 20M8.12 8.12L12 12"></path>
</svg>
</div>
<h2 class="text-gray-900 text-xl title-font font-medium">Analytical Statistics</h2>
</div>
<div class="flex-grow mt-4 mb-0">
<p class="leading-relaxed text-base ">Financial planning, forecasting, and making quick adjustments in
response to changing client demands and budgets are all essential for statistics.</p>
<a class="mt-3 text-indigo-500 inline-flex items-center cursor-pointer hover:text-indigo-700"
href="#">Learn More
</a>
</div>
</div>
</div>
<div class="p-4 md:w-1/3" style="min-height: 300px;">
<div class="flex rounded-lg h-full bg-white p-8 flex-col">
<div class="flex items-center mb-3">
<div
class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full bg-indigo-500 text-white flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-6 h-6" viewBox="0 0 24 24">
<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1zM4 22v-7"></path>
</svg>
</div>
<h2 class="text-gray-900 text-xl title-font font-medium">Payroll Set-up</h2>
</div>
<div class="flex-grow">
<p class="leading-relaxed text-base">The intuitive payroll wizard will collect all of the information you
need to correctly set up from general employee information to direct deposit information.</p>
<a class="mt-3 text-indigo-500 inline-flex items-center cursor-pointer hover:text-indigo-700"
href="#">Learn More
</a>
</div>
</div>
</div>
<div class="p-4 md:w-1/3" style="min-height: 300px;">
<div class="flex rounded-lg h-full bg-white p-8 flex-col">
<div class="flex items-center mb-3">
<div
class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full bg-indigo-500 text-white flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-6 h-6" viewBox="0 0 24 24">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>
</svg>
</div>
<h2 class="text-gray-900 text-xl title-font font-medium">Ensure Compliance</h2>
</div>
<div class="flex-grow">
<p class="leading-relaxed text-base">The employee onboarding software uses a method of confirming the
employment eligibility and ensuring compliance at every stage within short amount of time.</p>
<a class="mt-3 text-indigo-500 inline-flex items-center cursor-pointer hover:text-indigo-700"
href="#">Learn More
</a>
</div>
</div>
</div>
<div class="p-4 md:w-1/3" style="min-height: 300px;">
<div class="flex rounded-lg h-full bg-white p-8 flex-col">
<div class="flex items-center mb-3">
<div
class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full bg-indigo-500 text-white flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-6 h-6" viewBox="0 0 24 24">
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path>
</svg>
</div>
<h2 class="text-gray-900 text-xl title-font font-medium">Display Sharing</h2>
</div>
<div class="flex-grow">
<p class="leading-relaxed text-base">Several wonderful features are available to you, which will surely
enhance your overall user experience. You may choose to share your screen with other participants.</p>
<a class="mt-3 text-indigo-500 inline-flex items-center cursor-pointer hover:text-indigo-700"
href="/index.html">Learn More
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio -->
<section id="portfolio" class="text-gray-600 bg-white body-font pb-6">
<div class="container px-5 py-20 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h2 class="sm:text-6xl text-3xl font-semibold title-font mb-4 text-gray-900">Portfolio</h2>
<p class="lg:w-2/4 mx-auto leading-relaxed text-md">Whatever cardigan tote bag tumblr hexagon brooklyn
asymmetrical gentrify, subway tile poke farm-to-table. Franzen you probably haven't.</p>
</div>
<div class="flex flex-wrap -m-4 ">
<div class="lg:w-1/3 sm:w-1/2 p-4" style="min-height: 400px;">
<div class="flex relative h-full">
<img alt="gallery" class="absolute inset-0 w-full h-full object-cover object-center rounded-md"
src="images/port1.jpg">
<div
class="px-8 py-10 relative z-10 w-full bg-gray-200 rounded-md opacity-0 hover:opacity-80 transition duration-500 ease-in-out">
<h2 class="tracking-widest text-xs title-font font-medium text-indigo-500 mb-1">THE SUBTITLE</h2>
<h1 class="title-font text-xl font-bold text-gray-900 mb-3">Shooting Stars</h1>
<p class="leading-relaxed">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing
tousled waistcoat.</p>
</div>
</div>
</div>
<div class="lg:w-1/3 sm:w-1/2 p-4" style="min-height: 400px;">
<div class="flex relative h-full">
<img alt="gallery" class="absolute inset-0 w-full h-full object-cover object-center rounded-md"
src="images/port2.jpg">
<div
class="px-8 py-10 relative z-10 w-full bg-gray-200 rounded-md opacity-0 hover:opacity-80 transition duration-500 ease-in-out">
<h2 class="tracking-widest text-xs title-font font-medium text-indigo-500 mb-1">THE SUBTITLE</h2>
<h1 class="title-font text-xl font-bold text-gray-900 mb-3">The Catalyzer</h1>
<p class="leading-relaxed">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing
tousled waistcoat.</p>
</div>
</div>
</div>
<div class="lg:w-1/3 sm:w-1/2 p-4" style="min-height: 400px;">
<div class="flex relative h-full">
<img alt="gallery" class="absolute inset-0 w-full h-full object-cover object-center rounded-md"
src="images/port3.jpg">
<div
class="px-8 py-10 relative z-10 w-full bg-gray-200 rounded-md opacity-0 hover:opacity-80 transition duration-500 ease-in-out">
<h2 class="tracking-widest text-xs title-font font-medium text-indigo-500 mb-1">THE SUBTITLE</h2>
<h1 class="title-font text-xl font-bold text-gray-900 mb-3">The 400 Blows</h1>
<p class="leading-relaxed">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing
tousled waistcoat.</p>
</div>
</div>
</div>
<div class="lg:w-1/3 sm:w-1/2 p-4" style="min-height: 400px;">
<div class="flex relative h-full">
<img alt="gallery" class="absolute inset-0 w-full h-full object-cover object-center rounded-md"
src="images/port4.jpg">
<div
class="px-8 py-10 relative z-10 w-full bg-gray-200 rounded-md opacity-0 hover:opacity-80 transition duration-500 ease-in-out">
<h2 class="tracking-widest text-xs title-font font-medium text-indigo-500 mb-1">THE SUBTITLE</h2>
<h1 class="title-font text-xl font-bold text-gray-900 mb-3">Neptune</h1>
<p class="leading-relaxed">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing
tousled waistcoat.</p>
</div>
</div>
</div>
<div class="lg:w-1/3 sm:w-1/2 p-4" style="min-height: 400px;">
<div class="flex relative h-full">
<img alt="gallery" class="absolute inset-0 w-full h-full object-cover object-center rounded-md"
src="images/port5.jpg">
<div
class="px-8 py-10 relative z-10 w-full bg-gray-200 rounded-md opacity-0 hover:opacity-80 transition duration-500 ease-in-out">
<h2 class="tracking-widest text-xs title-font font-medium text-indigo-500 mb-1">THE SUBTITLE</h2>
<h1 class="title-font text-xl font-bold text-gray-900 mb-3">Holden Caulfield</h1>
<p class="leading-relaxed">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing
tousled waistcoat.</p>
</div>
</div>
</div>
<div class="lg:w-1/3 sm:w-1/2 p-4" style="min-height: 400px;">
<div class="flex relative h-full">
<img alt="gallery" class="absolute inset-0 w-full h-full object-cover object-center rounded-md"
src="images/port6.jpg">
<div
class="px-8 py-10 relative z-10 w-full bg-gray-200 rounded-md opacity-0 hover:opacity-80 transition duration-500 ease-in-out">
<h2 class="tracking-widest text-xs title-font font-medium text-indigo-500 mb-1">THE SUBTITLE</h2>
<h1 class="title-font text-xl font-bold text-gray-900 mb-3">Alper Kamu</h1>
<p class="leading-relaxed">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing
tousled waistcoat.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Our team -->
<section id="team" class="text-gray-600 bg-gray-100 body-font pb-5">
<div class="container px-5 py-20 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h2 class="sm:text-6xl text-4xl font-semibold title-font mb-4 text-gray-900">Our Team</h2>
<p class="lg:w-2/5 mx-auto leading-relaxed text-md">Whatever cardigan tote bag tumblr hexagon brooklyn
asymmetrical gentrify, subway poke farm-to-table. Franzen probably haven't heard of them.</p>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 lg:w-1/2 rounded-lg transition duration-500 ease-in-out">
<div
class="h-full flex sm:flex-row flex-col items-center sm:justify-start justify-center text-center sm:text-left">
<img alt="team" class="flex-shrink-0 rounded-lg w-48 h-48 object-cover object-center sm:mb-0 mb-4"
src="images/team1.jpg">
<div class="flex-grow sm:pl-8">
<h2 class="title-font font-bold text-xl text-gray-900">Holden Caulfield</h2>
<h3 class="text-gray-400 mb-3 ">UI Developer</h3>
<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna tempor aliqua.</p>
<span class="inline-flex pt-4">
<a class="text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z">
</path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/2 rounded-lg transition duration-500 ease-in-out">
<div
class="h-full flex sm:flex-row flex-col items-center sm:justify-start justify-center text-center sm:text-left">
<img alt="team" class="flex-shrink-0 rounded-lg w-48 h-48 object-cover object-center sm:mb-0 mb-4"
src="images/team2.jpg">
<div class="flex-grow sm:pl-8">
<h2 class="title-font font-bold text-lg text-gray-900">Alper Kamu</h2>
<h3 class="text-gray-400 mb-3">Designer</h3>
<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna tempor aliqua.</p>
<span class="inline-flex pt-4">
<a class="text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z">
</path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/2 rounded-lg transition duration-500 ease-in-out">
<div
class="h-full flex sm:flex-row flex-col items-center sm:justify-start justify-center text-center sm:text-left">
<img alt="team" class="flex-shrink-0 rounded-lg w-48 h-48 object-cover object-center sm:mb-0 mb-4"
src="images/team3.jpg">
<div class="flex-grow sm:pl-8">
<h2 class="title-font font-bold text-lg text-gray-900">Atticus Finch</h2>
<h3 class="text-gray-400 mb-3">UI Developer</h3>
<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna tempor aliqua.</p>
<span class="inline-flex pt-4">
<a class="text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z">
</path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/2 rounded-lg transition duration-500 ease-in-out">
<div
class="h-full flex sm:flex-row flex-col items-center sm:justify-start justify-center text-center sm:text-left">
<img alt="team" class="flex-shrink-0 rounded-lg w-48 h-48 object-cover object-center sm:mb-0 mb-4"
src="images/team4.jpg">
<div class="flex-grow sm:pl-8">
<h2 class="title-font font-bold text-lg text-gray-900">Henry Letham</h2>
<h3 class="text-gray-400 mb-3">Designer</h3>
<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna tempor aliqua.</p>
<span class="inline-flex pt-4">
<a class="text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z">
</path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="#">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing table -->
<section id="pricing" class="text-gray-600 bg-white body-font overflow-hidden">
<div class="container px-5 py-20 mx-auto items-stretch">
<div class="flex flex-col text-center w-full mb-20">
<h1 class="sm:text-6xl text-2xl font-semibold title-font mb-2 text-gray-900">Pricing</h1>
<p class="lg:w-2/4 mx-auto leading-relaxed text-base text-gray-500">Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ad minim veniam.</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 focus:outline-none">Annually</button>
</div>
</div>
<div class="flex flex-wrap -m-4 justify-center">
<div class="p-4 xl:w-1/3 md:w-1/2 w-full" style="min-height: 517px;">
<div class="h-full p-10 rounded-lg border-2 border-gray-300 flex flex-col relative overflow-hidden">
<h2 class="text-xs tracking-widest title-font mb-1 font-md">START</h2>
<h1 class="text-5xl font-bold text-gray-800 pb-8 mb-4 border-b border-gray-200 leading-none">Free</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>120 TB of Storage
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Life-time Support
</p>
<p class="flex items-center text-gray-600 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Premium Add-Ons
</p>
<button
class="text-white mt-auto bg-indigo-300 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg">Join
For Free</button>
</div>
</div>
<div class="p-4 xl:w-1/3 md:w-1/2 w-full" style="min-height: 517px;">
<div class="h-full p-10 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-xs tracking-widest title-font mb-1 font-medium">PRO</h2>
<h1 class="text-5xl text-gray-800 font-bold leading-none flex items-center pb-8 mb-4 border-b border-gray-200">
<span>$38</span>
<span class="text-lg ml-1 font-bold text-gray-500">/mo</span>
</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>200 TB of Storage
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Life-time Support
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Premium Add-Ons
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
</span>Fastest Network
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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> Advanced Auditing
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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> Community Support
</p>
<button
class="text-white mt-auto bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg">Buy Premium</button>
</div>
</div>
<div class="p-4 xl:w-1/3 md:w-1/2 w-full" style="min-height: 517px;">
<div class="h-full p-10 rounded-lg border-2 border-gray-300 flex flex-col relative overflow-hidden">
<h2 class="text-xs tracking-widest title-font mb-1 font-medium">BUSINESS</h2>
<h1 class="text-5xl font-bold text-gray-800 leading-none flex items-center pb-8 mb-4 border-b border-gray-200">
<span>$56</span>
<span class="text-lg ml-1 font-bold text-gray-500">/mo</span>
</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>500 TB of Storage
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Life-time Support
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
</span>Fastest Network
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Value Stream Management
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Free Guest Users
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Unlimited Bandwidth
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white 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>Premium Add-Ons
</p>
<p class="flex items-center text-gray-600 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" 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>Everything from Premium
</p>
<button
class="text-white mt-auto bg-indigo-300 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg">Buy
Now</button>
</div>
</div>
</div>
</div>
</section>
<!---Contact-->
<section id="contact" class="text-gray-600 bg-gray-100 body-font relative">
<div class="container px-5 py-20 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(0.9) contrast(.7) opacity(0.9);"></iframe>
<div class="bg-white relative flex flex-wrap py-6 rounded shadow-xl">
<div class="lg:w-1/2 px-6">
<h2 class="title-font font-bold text-gray-900 tracking-widest text-s">ADDRESS</h2>
<p class="mt-2">60521 Kolby Cliffs Apt. 775, Diamond Bank Of USA, Lake Genesis</p>
</div>
<div class="lg:w-1/2 px-6 mt-4 lg:mt-0">
<h2 class="title-font font-bold text-gray-900 tracking-widest text-s">EMAIL</h2>
<a class="text-indigo-500 leading-relaxed">[email protected]</a>
<h2 class="title-font font-bold text-gray-900 tracking-widest text-s mt-4">PHONE</h2>
<p class="leading-relaxed">123-456-7890</p>
</div>
</div>
</div>
<div class="md:w-1/2 bg-white shadow-lg flex flex-col md:ml-auto w-full p-10 rounded-lg md:py-8 mt-8 md:mt-0">
<h2 class="text-gray-900 text-4xl mb-1 font-medium title-font">Feedback</h2>
<p class="leading-relaxed mb-5 text-gray-600">Post-ironic portland shabby chic echo park, banjo fashion axe</p>
<div class="relative mb-4">
<label for="name" class="leading-7 text-sm text-gray-600">Name</label>
<input type="text" id="name" name="name"
class="w-full bg-white rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out">
</div>
<div class="relative mb-4">
<label for="email" class="leading-7 text-sm text-gray-600">Email</label>
<input type="email" id="email" name="email"
class="w-full bg-white rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out">
</div>
<div class="relative mb-10">
<label for="message" class="leading-7 text-sm text-gray-600">Message</label>
<textarea id="message" name="message"
class="w-full bg-white rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 h-32 text-base outline-none text-gray-700 py-1 px-3 resize-none leading-6 transition-colors duration-200 ease-in-out"></textarea>
</div>
<button
class="text-white bg-indigo-500 border-0 py-4 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg">Contact With Us</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-gray-400 bg-gray-900 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap md:text-left text-center order-first">
<div class="lg:w-1/4 md:w-1/2 w-full px-4 sm:pl-0 sm:pr-4">
<h2 class="title-font font-medium text-white tracking-widest text-sm mb-3">COMPANY</h2>
<nav class="list-none mb-10">
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">About Us</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Career</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Advertise</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Help & Support</a>
</li>
</nav>
</div>
<div class="lg:w-1/4 md:w-1/2 w-full px-4 sm:pl-0 sm:pr-4">
<h2 class="title-font font-medium text-white tracking-widest text-sm mb-3">USEFUL LINKS</h2>
<nav class="list-none mb-10">
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Home</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">About us</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Services</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Privacy Policy</a>
</li>
</nav>
</div>
<div class="lg:w-1/4 md:w-1/2 w-full px-4 sm:pl-0 sm:pr-4">
<h2 class="title-font font-medium text-white tracking-widest text-sm mb-3">OUR SERVICES</h2>
<nav class="list-none mb-10">
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Web Design</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Web Development</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Product Management</a>
</li>
<li>
<a class="text-gray-400 hover:text-white cursor-pointer">Graphic Design</a>
</li>
</nav>
</div>
<div class="lg:w-1/4 md:w-1/2 w-full px-4 sm:pl-0 sm:pr-4">
<h2 class="title-font font-medium text-white tracking-widest text-sm mb-3">SUBSCRIBE</h2>
<div
class="flex xl:flex-nowrap md:flex-nowrap lg:flex-wrap flex-wrap justify-center items-end md:justify-start">
<div class="relative w-40 sm:w-auto xl:mr-4 lg:mr-0 sm:mr-4 mr-2">
<label for="footer-field" class="leading-7 text-sm text-gray-400">Enter Email</label>
<input type="text" id="footer-field" name="footer-field"
class="w-full bg-gray-800 rounded border bg-opacity-40 border-gray-700 focus:bg-transparent focus:ring-2 focus:ring-indigo-900 focus:border-indigo-500 text-base outline-none text-gray-100 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out">
</div>
<button
class="lg:mt-2 xl:mt-0 flex-shrink-0 inline-flex text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded">Subscribe</button>
</div>
<p class="text-gray-500 text-sm mt-2 md:text-left text-center">Get updates offers and features
<br class="lg:block hidden">in your mailbox.
</p>
</div>
</div>
</div>
<div class="bg-gray-800 bg-opacity-75">
<div class="container px-5 py-6 mx-auto flex items-center sm:flex-row flex-col">
<a class="flex title-font font-medium items-center md:justify-start justify-center text-white">
<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">Tailblocks</span>
</a>
<p class="text-sm text-gray-400 sm:ml-6 sm:mt-0 mt-4">© 2021 —
<a href="https://themewagon.com" class="text-gray-500 ml-1" target="_blank"
rel="noopener noreferrer">ThemeWagon</a>
</p>
<span
class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start hover:cursor-pointer color-white">
<a class="text-gray-400 cursor-pointer hover:text-blue-400" href="/index.html">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5"
viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="/index.html">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5"
viewBox="0 0 24 24">
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z">
</path>
</svg>
</a>
<a class="ml-3 text-gray-400 cursor-pointer hover:text-blue-400" href="/index.html">