-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1115 lines (1104 loc) · 44.8 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>
<style>
html {
scroll-behavior: smooth;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sample Website</title>
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body>
<!-- Navbar starts -->
<header class="text-gray-700 body-font">
<a id="home"></a>
<div
class="fixed bg-white shadow-md z-50 w-full px-5 py-5 flex justify-between items-center"
>
<a
class="flex title-font font-medium items-center text-gray-900 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="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"></path>
</svg>
<span class="ml-3 text-xl">Asterik Marketing Group</span>
</a>
<nav
class="md:ml-auto flex flex-wrap items-center text-base justify-center"
>
<a
class="mr-6 text-xl hover:text-gray-800 hover:border-black border-b-2 text-black"
href="#home"
>Home</a
>
<a
class="mr-6 text-xl border-b-2 hover:text-gray-800 hover:border-black text-black"
href="#aboutSection"
>About us</a
>
<a
class="mr-6 text-xl border-b-2 hover:text-gray-800 hover:border-black text-black"
href="#ourCourses"
>Our Courses</a
>
<a
class="mr-6 text-xl border-b-2 hover:text-gray-800 hover:border-black text-black"
href="#ourFaculty"
>Our Faculty</a
>
<a
class="mr-1 text-xl border-b-2 hover:text-gray-800 hover:border-black text-black"
href="#contact"
>Contact
</a>
</nav>
</div>
</header>
<!-- Navbar ends -->
<!-- App promotion content starts -->
<section class="text-gray-700 body-font">
<div
class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center"
>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6 mb-10 md:mb-0">
<img
class="object-cover object-center rounded"
alt="hero"
src="https://dummyimage.com/720x600"
/>
</div>
<div
class="lg:flex-grow md:w-1/2 lg:pl-24 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center"
>
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900"
>
Try our new App for more exclusive Content and Amazing Discounts-
</h1>
<p class="mb-8 leading-relaxed"></p>
<div class="flex w-full md:justify-start justify-center">
<input
class="bg-gray-100 rounded mr-4 border border-gray-400 focus:outline-none focus:border-indigo-500 text-base px-4 lg:w-full xl:w-1/2 w-2/4"
placeholder="Enter you email-address"
type="text"
/>
<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"
>
Subscibe to our Newsletters
</button>
</div>
<p class="text-sm mt-2 text-gray-500 mb-8 w-full">
We don't believe in spamming!!
</p>
<div class="flex lg:flex-row md:flex-col">
<button
class="bg-gray-200 inline-flex py-3 px-5 rounded-lg items-center hover:bg-gray-300 focus:outline-none"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="w-6 h-6"
viewBox="0 0 512 512"
>
<path
d="M99.617 8.057a50.191 50.191 0 00-38.815-6.713l230.932 230.933 74.846-74.846L99.617 8.057zM32.139 20.116c-6.441 8.563-10.148 19.077-10.148 30.199v411.358c0 11.123 3.708 21.636 10.148 30.199l235.877-235.877L32.139 20.116zM464.261 212.087l-67.266-37.637-81.544 81.544 81.548 81.548 67.273-37.64c16.117-9.03 25.738-25.442 25.738-43.908s-9.621-34.877-25.749-43.907zM291.733 279.711L60.815 510.629c3.786.891 7.639 1.371 11.492 1.371a50.275 50.275 0 0027.31-8.07l266.965-149.372-74.849-74.847z"
></path>
</svg>
<span class="ml-4 flex items-start flex-col leading-none">
<span class="text-xs text-gray-600 mb-1">GET IT ON</span>
<span class="title-font font-medium">Google Play</span>
</span>
</button>
<button
class="bg-gray-200 inline-flex py-3 px-5 rounded-lg items-center lg:ml-4 md:ml-0 ml-4 md:mt-4 mt-0 lg:mt-0 hover:bg-gray-300 focus:outline-none"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="w-6 h-6"
viewBox="0 0 305 305"
>
<path
d="M40.74 112.12c-25.79 44.74-9.4 112.65 19.12 153.82C74.09 286.52 88.5 305 108.24 305c.37 0 .74 0 1.13-.02 9.27-.37 15.97-3.23 22.45-5.99 7.27-3.1 14.8-6.3 26.6-6.3 11.22 0 18.39 3.1 25.31 6.1 6.83 2.95 13.87 6 24.26 5.81 22.23-.41 35.88-20.35 47.92-37.94a168.18 168.18 0 0021-43l.09-.28a2.5 2.5 0 00-1.33-3.06l-.18-.08c-3.92-1.6-38.26-16.84-38.62-58.36-.34-33.74 25.76-51.6 31-54.84l.24-.15a2.5 2.5 0 00.7-3.51c-18-26.37-45.62-30.34-56.73-30.82a50.04 50.04 0 00-4.95-.24c-13.06 0-25.56 4.93-35.61 8.9-6.94 2.73-12.93 5.09-17.06 5.09-4.64 0-10.67-2.4-17.65-5.16-9.33-3.7-19.9-7.9-31.1-7.9l-.79.01c-26.03.38-50.62 15.27-64.18 38.86z"
></path>
<path
d="M212.1 0c-15.76.64-34.67 10.35-45.97 23.58-9.6 11.13-19 29.68-16.52 48.38a2.5 2.5 0 002.29 2.17c1.06.08 2.15.12 3.23.12 15.41 0 32.04-8.52 43.4-22.25 11.94-14.5 17.99-33.1 16.16-49.77A2.52 2.52 0 00212.1 0z"
></path>
</svg>
<span class="ml-4 flex items-start flex-col leading-none">
<span class="text-xs text-gray-600 mb-1">Download on the</span>
<span class="title-font font-medium">App Store</span>
</span>
</button>
</div>
</div>
</div>
</section>
<br />
<hr />
<!-- App promotion content ends -->
<!-- About Section Start -->
<section class="text-gray-700 body-font">
<a id="aboutSection"></a>
<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-gray-900"
>
About Our Institute!!
</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Asperiores
perspiciatis assumenda, aut voluptates ex rerum maxime, mollitia
minus ad voluptatum in beatae atque cupiditate! Harum impedit optio
saepe odio voluptates?
</p>
</div>
<section class="text-gray-700 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap -m-4 text-center">
<div class="p-4 sm:w-1/4 w-1/2">
<h2
class="title-font font-medium sm:text-4xl text-3xl text-gray-900"
>
+ 21K
</h2>
<p class="leading-relaxed">Students have been trained</p>
</div>
<div class="p-4 sm:w-1/4 w-1/2">
<h2
class="title-font font-medium sm:text-4xl text-3xl text-gray-900"
>
+ 15K
</h2>
<p class="leading-relaxed">Students have been placed</p>
</div>
<div class="p-4 sm:w-1/4 w-1/2">
<h2
class="title-font font-medium sm:text-4xl text-3xl text-gray-900"
>
+ 7
</h2>
<p class="leading-relaxed">Years of Experience</p>
</div>
<div class="p-4 sm:w-1/4 w-1/2">
<h2
class="title-font font-medium sm:text-4xl text-3xl text-gray-900"
>
4.7
</h2>
<p class="leading-relaxed">Stars on Google</p>
</div>
</div>
</div>
</section>
<h1
class="sm:text-4xl text-2xl text-center font-medium title-font mb-4 text-gray-900"
>
<br />
<hr />
<br />
Our Services-
</h1>
<div class="flex flex-wrap">
<div
class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200"
>
<h2
class="text-lg sm:text-xl text-gray-900 font-medium title-font mb-2"
>
Digital Marketing
</h2>
<p class="leading-relaxed text-base mb-4">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Asperiores perspiciatis assumenda
</p>
</div>
<div
class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200"
>
<h2
class="text-lg sm:text-xl text-gray-900 font-medium title-font mb-2"
>
Content Writing
</h2>
<p class="leading-relaxed text-base mb-4">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Asperiores perspiciatis assumenda
</p>
</div>
<div
class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200"
>
<h2
class="text-lg sm:text-xl text-gray-900 font-medium title-font mb-2"
>
Business Analytics
</h2>
<p class="leading-relaxed text-base mb-4">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Asperiores perspiciatis assumenda
</p>
</div>
<div
class="xl:w-1/4 lg:w-1/2 md:w-full px-8 py-6 border-l-2 border-gray-200"
>
<h2
class="text-lg sm:text-xl text-gray-900 font-medium title-font mb-2"
>
Web Development
</h2>
<p class="leading-relaxed text-base mb-4">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Asperiores perspiciatis assumenda
</p>
</div>
</div>
</div>
</section>
<!--About Section End-->
<!-------Courses List start------>
<section class="text-gray-700 body-font">
<a id="ourCourses"></a>
<div class="container px-5 py-24 mx-auto">
<h1
class="sm:text-3xl text-2xl font-medium text-center title-font mb-4 text-gray-900"
>
Some of Our Courses
</h1>
<div class="flex flex-wrap -m-4">
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Digital Marketing
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#">Digital Marketing Specialisation</a>
</h2>
<p class="mt-1">999.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Digital Marketing
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#"> Search Engine Optimisation Course</a>
</h2>
<p class="mt-1">699.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Digital Marketing
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#"> Social Media Marketing Course</a>
</h2>
<p class="mt-1">599.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Digital Marketing
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#"> Social Media Optimisation Course</a>
</h2>
<p class="mt-1">599.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Digital Marketing
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#"> Wordpress Course</a>
</h2>
<p class="mt-1">699.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Web Development
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#"> Web Development Specialisation</a>
</h2>
<p class="mt-1">999.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Web Development
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium">
<a href="#"> HTML and CSS Course</a>
</h2>
<p class="mt-1">699.00</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a class="block relative h-48 rounded overflow-hidden">
<img
alt="ecommerce"
class="object-cover object-center w-full h-full block"
src="https://dummyimage.com/420x260"
/>
</a>
<div class="mt-4">
<h3 class="text-gray-500 text-xs tracking-widest title-font mb-1">
Graphic Designing
</h3>
<h2 class="text-gray-900 title-font text-lg font-medium" href="#">
<a href="#"> Ui/Ux designing</a>
</h2>
<p class="mt-1">699.00</p>
</div>
</div>
</div>
</div>
</section>
<!-------Courses List End---------->
<!----- Trending course List Start-------->
<section class="text-gray-700 body-font">
<div class="container px-5 py-24 mx-auto">
<h1
class="sm:text-3xl text-2xl font-medium text-center title-font mb-4 text-gray-900"
>
Our Evertime Trending Courses-
</h1>
<br />
<br />
<div
class="flex items-center lg:w-3/5 mx-auto border-b pb-10 mb-10 border-gray-200 sm:flex-row flex-col"
>
<div
class="sm:w-32 sm:h-32 h-20 w-20 sm:mr-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="sm:w-16 sm:h-16 w-10 h-10"
viewBox="0 0 24 24"
>
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
</div>
<div class="flex-grow sm:text-left text-center mt-6 sm:mt-0">
<h2 class="text-gray-900 text-lg title-font font-medium mb-2">
Digital Marketing Specialisation
</h2>
<p class="leading-relaxed text-base">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
</p>
<a href="#" class="mt-3 text-indigo-500 inline-flex items-center"
>Buy Now
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div
class="flex items-center lg:w-3/5 mx-auto border-b pb-10 mb-10 border-gray-200 sm:flex-row flex-col"
>
<div class="flex-grow sm:text-left text-center mt-6 sm:mt-0">
<h2 class="text-gray-900 text-lg title-font font-medium mb-2">
Web Development Course
</h2>
<p class="leading-relaxed text-base">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
</p>
<a href="#" class="mt-3 text-indigo-500 inline-flex items-center"
>Buy Now
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
<div
class="sm:w-32 sm:order-none order-first sm:h-32 h-20 w-20 sm:ml-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="sm:w-16 sm:h-16 w-10 h-10"
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>
</div>
<div class="flex items-center lg:w-3/5 mx-auto sm:flex-row flex-col">
<div
class="sm:w-32 sm:h-32 h-20 w-20 sm:mr-10 inline-flex items-center justify-center rounded-full bg-indigo-100 text-indigo-500 flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="sm:w-16 sm:h-16 w-10 h-10"
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>
<div class="flex-grow sm:text-left text-center mt-6 sm:mt-0">
<h2 class="text-gray-900 text-lg title-font font-medium mb-2">
Social Media Marketing Course
</h2>
<p class="leading-relaxed text-base">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
</p>
<a href="#" class="mt-3 text-indigo-500 inline-flex items-center"
>Buy Now
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</section>
<!-----Trending course List End------->
<!---Top Tutors List start------->
<section class="text-gray-700 body-font">
<a id="ourFaculty"></a>
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h1 class="text-4xl font-medium title-font mb-4 text-gray-900">
Our Top Tutors
</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto,
omnis ex ut esse, voluptates fugit aliquam quaerat nobis, unde rem
ullam. Voluptas tempora laborum officiis excepturi amet suscipit
repellendus corrupti.
</p>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img
alt="team"
class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4"
src="https://dummyimage.com/201x201"
/>
<div class="w-full">
<h2 class="title-font font-medium text-lg text-gray-900">
Name 1
</h2>
<h3 class="text-gray-500 mb-3">Web Developer</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto, omnis ex ut esse, voluptates
</p>
<span class="inline-flex">
<a class="text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img
alt="team"
class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4"
src="https://dummyimage.com/201x201"
/>
<div class="w-full">
<h2 class="title-font font-medium text-lg text-gray-900">
Name 2
</h2>
<h3 class="text-gray-500 mb-3">Digital Marketing Expert</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto, omnis ex ut esse, voluptates
</p>
<span class="inline-flex">
<a class="text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img
alt="team"
class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4"
src="https://dummyimage.com/201x201"
/>
<div class="w-full">
<h2 class="title-font font-medium text-lg text-gray-900">
Name 3
</h2>
<h3 class="text-gray-500 mb-3">Digital Marketing Expert</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto, omnis ex ut esse, voluptates
</p>
<span class="inline-flex">
<a class="text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
<div class="p-4 lg:w-1/4 md:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<img
alt="team"
class="flex-shrink-0 rounded-lg w-full h-56 object-cover object-center mb-4"
src="https://dummyimage.com/201x201"
/>
<div class="w-full">
<h2 class="title-font font-medium text-lg text-gray-900">
Name 4
</h2>
<h3 class="text-gray-500 mb-3">Business Coach</h3>
<p class="mb-4">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto, omnis ex ut esse, voluptates
</p>
<span class="inline-flex">
<a class="text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
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-2 text-gray-500">
<svg
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Top Tutors List end------->
<!--Testimonial Section Start------>
<section class="text-gray-700 body-font">
<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-200 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. Harum
in, suscipit, ipsam recusandae qui aperiam voluptate mollitia
expedita reprehenderit accusantium consectetur ad molestias
deserunt vero eum facere incidunt adipisci? Consectetur?
</p>
<a class="inline-flex items-center">
<img
alt="testimonial"
src="https://dummyimage.com/106x106"
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"
>Name 1</span
>
<span class="text-gray-500 text-sm">UI DEVELOPER</span>
</span>
</a>
</div>
</div>
<div class="p-4 md:w-1/2 w-full">
<div class="h-full bg-gray-200 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. Modi
maiores ratione quam natus dolore delectus fugiat obcaecati
quibusdam est ducimus. Explicabo, placeat qui enim doloremque
ratione laborum quaerat autem perferendis!
</p>
<a class="inline-flex items-center">
<img
alt="testimonial"
src="https://dummyimage.com/107x107"
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"
>Name 2</span
>
<span class="text-gray-500 text-sm"> WEB DESIGNER</span>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!--Testimonial Section End---->
<!---Contact Us Section start--->
<section class="text-gray-700 body-font relative">
<a id="contact"></a>
<div class="container px-5 py-24 mx-auto flex sm:flex-no-wrap 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">
<div class="lg:w-1/2 px-6">
<h2
class="title-font font-medium text-gray-900 tracking-widest text-sm"
>
ADDRESS
</h2>
<p class="leading-relaxed">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
</div>
<div class="lg:w-1/2 px-6 mt-4 lg:mt-0">
<h2
class="title-font font-medium text-gray-900 tracking-widest text-sm"
>
EMAIL
</h2>
<a class="text-indigo-500 leading-relaxed">[email protected]</a>
<h2
class="title-font font-medium text-gray-900 tracking-widest text-sm 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">
Enquire About our courses -
</h2>
<p class="leading-relaxed mb-5 text-gray-600">
One of our Executive will call you and will discuss about the
in-depth detail of the course in which you are interested
</p>
<input
class="bg-white rounded border border-gray-400 focus:outline-none focus:border-indigo-500 text-base px-4 py-2 mb-4"
placeholder="Name"
type="text"
/>
<input
class="bg-white rounded border border-gray-400 focus:outline-none focus:border-indigo-500 text-base px-4 py-2 mb-4"
placeholder="Contact Number"
type="text"
/>
<input