forked from Huang1jun/A-useful-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_3.html
1028 lines (1009 loc) · 44.1 KB
/
index_3.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 -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Yale - Education HTML Template">
<meta name="keywords" content="theme_ocean, college, course, e-learning, education, high school, kids, learning, online, online courses, school, student, teacher, tutor, university">
<meta name="author" content="theme_ocean">
<!-- SITE TITLE -->
<title>Yale - Education HTML Template</title>
<!-- Latest Bootstrap min CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/fonts/themify-icons.css">
<!--- owl carousel Css-->
<link rel="stylesheet" href="assets/owlcarousel/css/owl.carousel.css">
<link rel="stylesheet" href="assets/owlcarousel/css/owl.theme.css">
<!--slicknav Css-->
<link rel="stylesheet" href="assets/css/slicknav.css">
<!-- MAGNIFIC CSS -->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!-- animate CSS -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Style CSS -->
<link rel="stylesheet" href="assets/css/slider.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- START PRELOADER -->
<div class="preloaders">
<span class="loader"></span>
</div>
<!-- END PRELOADER -->
<!-- START LOGO WITH CONTACT -->
<section class="logo-contact">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="single-top-contact">
<i class="fa fa-phone"></i>
<h4>+485 7548 854826</h4>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="single-top-contact">
<i class="fa fa-envelope"></i>
<h4><a href="mailto:[email protected]">[email protected]</a></h4>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="single-top-contact">
<i class="fa fa-clock-o"></i>
<h4>Mon to sat Open: 9am - 6pm</h4>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="top_social_profile">
<ul>
<li><a href="#" class="top_f_facebook"><i class="fa fa-facebook" title="Facebook"></i></a></li>
<li><a href="#" class="top_f_twitter"><i class="fa fa-twitter" title="Twitter"></i></a></li>
<li><a href="#" class="top_f_instagram"><i class="fa fa-instagram" title="Instagram"></i></a></li>
<li><a href="#" class="top_f_linkedin"><i class="fa fa-linkedin" title="LinkedIn"></i></a></li>
</ul>
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END LOGO WITH CONTACT -->
<!-- START NAVBAR -->
<div id="navigation" class="fixed-top navbar-light bg-faded site-navigation">
<div class="container top_menu_bg">
<div class="row">
<div class="col-lg-2 col-md-3 col-sm-4">
<div class="site-logo">
<a href="index.html"><img src="assets/images/all-img/logo.png" alt=""></a>
</div>
</div><!--- END Col -->
<div class="col-lg-6 col-md-9 col-sm-8 ">
<div class="header_right ">
<nav id="main-menu" class="ms-auto">
<ul>
<li><a class="nav-link" href="index.html">Home <span class="ti-angle-down"></span></a>
<ul>
<li><a class="nav-link" href="index.html">Home 01</a></li>
<li><a class="nav-link" href="index_2.html">Home 02</a></li>
<li><a class="nav-link" href="index_3.html">Home 03</a></li>
</ul>
</li>
<li><a class="nav-link" href="#">Pages <span class="ti-angle-down"></span></a>
<ul>
<li><a class="nav-link" href="about.html">About Us</a></li>
<li><a class="nav-link" href="team.html">Instructor</a></li>
<li><a class="nav-link" href="team-details.html">Instructor Details</a></li>
<li><a class="nav-link" href="faq.html">FAQ's</a></li>
<li><a class="nav-link" href="event.html">Event</a></li>
<li><a class="nav-link" href="event_single.html">Event Single</a></li>
<li><a class="nav-link" href="error.html">404 Page</a></li>
<li><a class="nav-link" href="login.html">Login</a></li>
<li><a class="nav-link" href="register.html">Register</a></li>
</ul>
</li>
<li><a class="nav-link" href="course.html">Courses <span class="ti-angle-down"></span></a>
<ul>
<li><a class="nav-link" href="course.html">Courses 01</a></li>
<li><a class="nav-link" href="course2.html">Courses 02</a></li>
<li><a class="nav-link" href="course3.html">Courses 03</a></li>
<li><a class="nav-link" href="course-sidebar.html">Course Sidebar</a></li>
<li><a class="nav-link" href="single_course.html">Course details</a></li>
</ul>
</li>
<li><a class="nav-link" href="shop.html">Shop <span class="ti-angle-down"></span></a>
<ul>
<li><a class="nav-link" href="shop.html">Shop</a></li>
<li><a class="nav-link" href="single_shop.html">Single Shop</a></li>
<li><a class="nav-link" href="cart.html">Cart Page</a></li>
<li><a class="nav-link" href="checkout.html">Checkout page</a></li>
</ul>
</li>
<li><a class="nav-link" href="blog.html">Blog <span class="ti-angle-down"></span></a>
<ul>
<li><a class="nav-link" href="blog.html">Blog List</a></li>
<li><a class="nav-link" href="blog_single.html">Single Blog</a></li>
</ul>
</li>
<li><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
</nav>
<div id="mobile_menu"></div>
</div>
</div><!--- END Col -->
<div class="col-lg-4 col-md-3 col-sm-8 m-none">
<div class="home_lc">
<a href="#" class="hlc">
<i class="ti-heart"></i>
<span class="gactive">0</span>
</a>
<a href="#" class="hlc">
<i class="ti-shopping-cart-full"></i>
<span class="gactive">2</span>
</a>
</div>
<div class="call_to_action">
<a class="btn_two" href="register.html">Login / Register</a>
</div><!--- END SOCIAL PROFILE -->
</div><!--- END Col -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</div>
<!-- END NAVBAR -->
<!-- START HOME -->
<div id="kenburns_061" class="carousel slide ps_indicators_txt_icon ps_control_txt_icon data-bs-target kbrns_zoomInOut thumb_scroll_x swipe_x ps_easeOutQuart" data-ride="carousel" data-pause="hover" data-interval="10000" data-duration="2000">
<!-- Wrapper For Slides -->
<div class="carousel-inner" role="listbox">
<!-- First Slide -->
<div class="carousel-item active">
<!-- Slide Background -->
<img src="assets/images/banner/slide1.jpg" alt="slider-image" />
<!-- Left Slide Text Layer -->
<div class="kenburns_061_slide" data-animation="animated fadeInRight">
<h2>welcom to Yale</h2>
<h1>Classical <span><u>Education</u></span> For The Future</h1>
<h3>Lorem ipsum dolor sit amet consectetuer adipiscing elit Nam nibh</h3>
<a href="about.html">learn more</a>
</div><!-- /Left Slide Text Layer -->
</div><!-- /item -->
<!-- End of Slide -->
<!-- Second Slide -->
<div class="carousel-item">
<!-- Slide Background -->
<img src="assets/images/banner/slide2.jpg" alt="slider-image" />
<!-- Right Slide Text Layer -->
<div class="kenburns_061_slide kenburns_061_slide_right" data-animation="animated fadeInLeft">
<h2>welcom to Yale</h2>
<h1>Get your <span><u>best career</u></span> and get job with Yale</h1>
<h3>Lorem ipsum dolor sit amet consectetuer adipiscing elit Nam nibh</h3>
<a href="about.html">learn more</a>
</div><!-- /Right Slide Text Layer -->
</div><!-- /item -->
<!-- End of Slide -->
<!-- Third Slide -->
<div class="carousel-item">
<!-- Slide Background -->
<img src="assets/images/banner/slide3.jpg" alt="slider-image" />
<!-- Center Slide Text Layer -->
<div class="kenburns_061_slide kenburns_061_slide_center" data-animation="animated fadeInDown">
<h2>welcom to Yale</h2>
<h1>Refresh your <span><u>Mind & skill</u></span> For The Future</h1>
<h3>Lorem ipsum dolor sit amet consectetuer adipiscing elit Nam nibh</h3>
<a href="about.html">learn more</a>
</div><!-- /Center Slide Text Layer -->
</div><!-- /item -->
<!-- End of Slide -->
</div><!-- End of Wrapper For Slides -->
<!-- Left Control -->
<button class="carousel-control-prev" type="button" data-bs-target="#kenburns_061" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#kenburns_061" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- END HOME -->
<!-- START ABOUT US HOME ONE -->
<section class="ab_one section-padding">
<div class="container">
<div class="row">
<div class="col-lg-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="ab_content">
<h2>Learn & grow your <u><span>skills from</span></u> anywhere.</h2>
<p>Lorem ipsum dolor sit amet, consectetur notted adipisicing elit sed do eiusmod tempor incididunt ut labore et simply.</p>
</div>
<div class="abmv">
<span class="ti-medall"></span>
<h4>Our Mission</h4>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit sed do eiusmod tempor ut labore.</p>
</div>
<div class="abmv">
<span class="ti-wand"></span>
<h4>Our Vision</h4>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit sed do eiusmod tempor ut labore.</p>
</div>
<a class="btn_one" href="about.html">Discover More</a>
</div><!--- END COL -->
<div class="col-lg-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0">
<div class="ab_img">
<img src="assets/images/all-img/about1.png" class="img-fluid" alt="image">
<!-- <div class="wc_year">
<h3><span>6k+</span> <br />Happy Clients</h3>
</div> -->
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END ABOUT US HOME ONE -->
<!-- START COMPANY PARTNER LOGO -->
<div class="partner-logo pl_bg section-padding">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div class="partner">
<a href="#"><img src="assets/images/all-img/clients/b1.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b2.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b3.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b4.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b5.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b2.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b1.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b3.svg" alt="image"></a>
<a href="#"><img src="assets/images/all-img/clients/b4.svg" alt="image"></a>
</div>
</div><!-- END COL -->
</div><!--END ROW -->
</div><!-- END CONTAINER -->
</div>
<!-- END COMPANY PARTNER LOGO -->
<!-- START TOP PROMO FEATURES -->
<section class="tp_feature_p3 section-padding">
<div class="container">
<div class="section_top2 text-center">
<h4>Start Learning </h4>
<h2>Build Better skills, faster From Today.</h2>
<p>Lorem ipsum dolor sit amet, consectetur notted adipisicing elit sed do eiusmod tempor incididunt ut labore. </p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0">
<div class="single_tp">
<h3>Quality Education</h3>
<p>Lorem ipsum dolor sit amet, consectetur notted adipisicing elit sed do eiusmod tempor incididunt ut labore.</p>
<a href="#" class="cta"><span>Explore</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
</div><!-- END COL -->
<div class="col-lg-4 col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s" data-wow-offset="0">
<div class="single_tp">
<h3>Experienced Teachers</h3>
<p>Lorem ipsum dolor sit amet, consectetur notted adipisicing elit sed do eiusmod tempor incididunt ut labore.</p>
<a href="#" class="cta"><span>Explore</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
</div><!-- END COL -->
<div class="col-lg-4 col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.4s" data-wow-offset="0">
<div class="single_tp">
<h3>Delicious Food</h3>
<p>Lorem ipsum dolor sit amet, consectetur notted adipisicing elit sed do eiusmod tempor incididunt ut labore.</p>
<a href="#" class="cta"><span>Explore</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
</div><!-- END COL -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
</section>
<!-- END TOP PROMO FEATURES -->
<!--START COURSE -->
<div class="bc_three section-padding">
<div class="container">
<div class="section-title">
<h2>Popular Courses</h2>
<p>Choose Our <span><u>Top Courses</u></span></p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="course-slide3">
<div class="course-img3">
<div class="co_bg_img" style="background-image: url(assets/images/all-img/c1.png);">
<a class="co-video-play" href="https://www.youtube.com/watch?v=RXv_uIN6e-Y"><i class="fa fa-play"></i> <span class="video-title"</span></a>
</div>
</div>
<div class="course-content3">
<a class="c_btn2" href="single_course.html">Arts & Design</a>
<a class="c_btn3" href="single_course.html">29$</a>
<h3><a href="single_course.html">Basic Fundamentals of Interior & Graphics Design</a></h3>
</div>
</div><!--END COURSE SLIDE -->
</div><!--END COL -->
<div class="col-lg-4 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="course-slide3">
<div class="course-img3">
<div class="co_bg_img" style="background-image: url(assets/images/all-img/c2.png);">
<a class="co-video-play" href="https://www.youtube.com/watch?v=RXv_uIN6e-Y"><i class="fa fa-play"></i> <span class="video-title"</span></a>
</div>
</div>
<div class="course-content3">
<a class="c_btn2" href="single_course.html">Arts & Design</a>
<a class="c_btn3" href="single_course.html">29$</a>
<h3><a href="single_course.html">Basic Fundamentals of Interior & Graphics Design</a></h3>
</div>
</div><!--END COURSE SLIDE -->
</div><!--END COL -->
<div class="col-lg-4 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="course-slide3">
<div class="course-img3">
<div class="co_bg_img" style="background-image: url(assets/images/all-img/c3.png);">
<a class="co-video-play" href="https://www.youtube.com/watch?v=RXv_uIN6e-Y"><i class="fa fa-play"></i> <span class="video-title"</span></a>
</div>
</div>
<div class="course-content3">
<a class="c_btn2" href="single_course.html">Arts & Design</a>
<a class="c_btn3" href="single_course.html">29$</a>
<h3><a href="single_course.html">Basic Fundamentals of Interior & Graphics Design</a></h3>
</div>
</div><!--END COURSE SLIDE -->
</div><!--END COL -->
<div class="col-lg-4 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="course-slide3">
<div class="course-img3">
<div class="co_bg_img" style="background-image: url(assets/images/all-img/c4.png);">
<a class="co-video-play" href="https://www.youtube.com/watch?v=RXv_uIN6e-Y"><i class="fa fa-play"></i> <span class="video-title"</span></a>
</div>
</div>
<div class="course-content3">
<a class="c_btn2" href="single_course.html">Arts & Design</a>
<a class="c_btn3" href="single_course.html">29$</a>
<h3><a href="single_course.html">Basic Fundamentals of Interior & Graphics Design</a></h3>
</div>
</div><!--END COURSE SLIDE -->
</div><!--END COL -->
<div class="col-lg-4 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="course-slide3">
<div class="course-img3">
<div class="co_bg_img" style="background-image: url(assets/images/all-img/c5.png);">
<a class="co-video-play" href="https://www.youtube.com/watch?v=RXv_uIN6e-Y"><i class="fa fa-play"></i> <span class="video-title"</span></a>
</div>
</div>
<div class="course-content3">
<a class="c_btn2" href="single_course.html">Arts & Design</a>
<a class="c_btn3" href="single_course.html">29$</a>
<h3><a href="single_course.html">Basic Fundamentals of Interior & Graphics Design</a></h3>
</div>
</div><!--END COURSE SLIDE -->
</div><!--END COL -->
<div class="col-lg-4 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="course-slide3">
<div class="course-img3">
<div class="co_bg_img" style="background-image: url(assets/images/all-img/c6.png);">
<a class="co-video-play" href="https://www.youtube.com/watch?v=RXv_uIN6e-Y"><i class="fa fa-play"></i> <span class="video-title"</span></a>
</div>
</div>
<div class="course-content3">
<a class="c_btn2" href="single_course.html">Arts & Design</a>
<a class="c_btn3" href="single_course.html">29$</a>
<h3><a href="single_course.html">Basic Fundamentals of Interior & Graphics Design</a></h3>
</div>
</div><!--END COURSE SLIDE -->
</div><!--END COL -->
<div class="col-lg-12 text-center">
<div class="cc_btn">
<a class="btn_one" href="course.html">View All Course</a>
</div>
</div><!--END COL -->
</div><!--END ROW -->
</div><!--END CONTAINER -->
</div>
<!--END COURSE -->
<!-- START TEAM-->
<section class="team_member section-padding">
<div class="container">
<div class="section-title">
<h2>Team Member</h2>
<p>Our Expert <span><u>Instructors</u></span></p>
</div>
<div class="row text-center">
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="our-team">
<div class="team_img">
<img src="assets/images/all-img/team5.png" alt="team-image">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="team-content">
<h3 class="title">Stephen Cronin</h3>
<span class="post">Designer</span>
<div class="sth_det2">
<span class="ti-file"> <u>5 Course</u></span>
<span class="ti-user"> <u>12 Student</u></span>
</div>
</div>
</div>
</div><!--- END COL -->
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0">
<div class="our-team">
<div class="team_img">
<img src="assets/images/all-img/team6.png" alt="team-image">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="team-content">
<h3 class="title">Rachel Park</h3>
<span class="post">Developer</span>
<div class="sth_det2">
<span class="ti-file"> <u>5 Course</u></span>
<span class="ti-user"> <u>12 Student</u></span>
</div>
</div>
</div>
</div><!--- END COL -->
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s" data-wow-offset="0">
<div class="our-team">
<div class="team_img">
<img src="assets/images/all-img/team7.png" alt="team-image">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="team-content">
<h3 class="title">Dan Billson</h3>
<span class="post">Marketer</span>
<div class="sth_det2">
<span class="ti-file"> <u>5 Course</u></span>
<span class="ti-user"> <u>12 Student</u></span>
</div>
</div>
</div>
</div><!--- END COL -->
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.4s" data-wow-offset="0">
<div class="our-team">
<div class="team_img">
<img src="assets/images/all-img/team8.png" alt="team-image">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="team-content">
<h3 class="title">Gina Mellow</h3>
<span class="post">Co-founder</span>
<div class="sth_det2">
<span class="ti-file"> <u>5 Course</u></span>
<span class="ti-user"> <u>12 Student</u></span>
</div>
</div>
</div>
</div><!--- END COL -->
<div class="col-md-3 col-sm-6 col-xs-12">
</div><!--- END COL -->
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.5s" data-wow-offset="0">
<div class="our-team">
<div class="team_img">
<img src="assets/images/all-img/team9.png" alt="team-image">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="team-content">
<h3 class="title">John Stuart</h3>
<span class="post">Graphics Expert</span>
<div class="sth_det2">
<span class="ti-file"> <u>5 Course</u></span>
<span class="ti-user"> <u>12 Student</u></span>
</div>
</div>
</div>
</div><!--- END COL -->
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.6s" data-wow-offset="0">
<div class="our-team">
<div class="team_img">
<img src="assets/images/all-img/team10.png" alt="team-image">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<div class="team-content">
<h3 class="title">Maikel Clark</h3>
<span class="post">Animator</span>
<div class="sth_det2">
<span class="ti-file"> <u>5 Course</u></span>
<span class="ti-user"> <u>12 Student</u></span>
</div>
</div>
</div>
</div><!--- END COL -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
</section>
<!-- END TEAM -->
<!-- START EVENT -->
<section class="our-event section-padding">
<div class="container">
<div class="section-title">
<h2>Upcoming Events</h2>
<p>Join With Us <span><u>Our Events</u></span></p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-6 col-xs-12">
<div class="event-slide">
<div class="event-img">
<img src="assets/images/event/e1.png" alt="">
<div class="event-date">
<span class="date">20</span>
<span class="month">Oct</span>
</div>
</div>
<div class="event-content">
<h3><a href="event.html">Electrical Engineering of Batparder new event</a></h3>
<span><i class="fa fa-clock-o"></i>10.00AM - 12.00PM</span>
<span><i class="fa fa-table"></i><strong>At Yale School</strong></span>
<p>Lorem ipsum dolor sit amet magna consectetur adipisicing elit.</p>
</div>
</div><!-- END EVENT -->
</div><!-- END COL -->
<div class="col-lg-4 col-sm-6 col-xs-12">
<div class="event-slide">
<div class="event-img">
<img src="assets/images/event/e2.png" alt="">
<div class="event-date">
<span class="date">22</span>
<span class="month">Oct</span>
</div>
</div>
<div class="event-content">
<h3><a href="event.html">Architecture Design of International Art Fair 2024</a></h3>
<span><i class="fa fa-clock-o"></i>10.00AM - 12.00PM</span>
<span><i class="fa fa-table"></i><strong>At Yale School</strong></span>
<p>Lorem ipsum dolor sit amet magna consectetur adipisicing elit.</p>
</div>
</div><!-- END EVENT -->
</div><!-- END COL -->
<div class="col-lg-4 col-sm-6 col-xs-12">
<div class="event-slide">
<div class="event-img">
<img src="assets/images/event/e3.png" alt="">
<div class="event-date">
<span class="date">26</span>
<span class="month">Oct</span>
</div>
</div>
<div class="event-content">
<h3><a href="event.html">World Famous Chiter astana event</a></h3>
<span><i class="fa fa-clock-o"></i>10.00AM - 12.00PM</span>
<span><i class="fa fa-table"></i><strong>At Yale School</strong></span>
<p>Lorem ipsum dolor sit amet magna consectetur adipisicing elit.</p>
</div>
</div><!-- END EVENT -->
</div><!-- END COL -->
</div><!-- END ROW -->
</div><!-- END CONTAINER -->
</section>
<!-- END EVENT -->
<!-- START COUNTER -->
<section id="counts" class="counts section-padding">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Some Fun Fact</h2>
<p>Our Great <span><u>Achievement</u></span></p>
</div>
<div class="row gy-4">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="ti-face-smile"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="8232" data-purecounter-duration="1" class="purecounter"></span>
<p>Enrolled Students</p>
</div>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="ti-files" style="color: #ee6c20;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="521" data-purecounter-duration="1" class="purecounter"></span>
<p>Academic Programs</p>
</div>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="ti-headphone-alt" style="color: #15be56;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="163" data-purecounter-duration="1" class="purecounter"></span>
<p>Winning Award</p>
</div>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="ti-user" style="color: #bb0852;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="93" data-purecounter-duration="1" class="purecounter"></span>
<p>Certified Students</p>
</div>
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END COUNTER -->
<!-- START INSTRUCTOR+FREE COURSE -->
<section class="insfreecourse section-padding">
<div class="container">
<div class="row">
<div class="col-lg-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0">
<div class="single_ins">
<div class="single_ins_content">
<h4>Build Your Career</h4>
<h1>Become an Instructor</h1>
<p>Learn at your own pace, move the between multiple courses. </p>
<a href="#" class="cta"><span>Apply Now</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
<div class="single_ins_img">
<img src="assets/images/all-img/become-ins.png" class="img-fluid" alt="image">
</div>
</div>
</div><!--- END COL -->
<div class="col-lg-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0">
<div class="single_ins">
<div class="single_ins_content">
<h4>Build Your Career</h4>
<h1>Get Free Courses</h1>
<p>Learn at your own pace, move the between multiple courses. </p>
<a href="#" class="cta"><span>Contact Us</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
<div class="single_ins_img">
<img src="assets/images/all-img/free-course.png" class="img-fluid" alt="image">
</div>
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END INSTRUCTOR+FREE COURSE -->
<!-- START COURSE PROMOTION -->
<section class="course_promo section-padding">
<div class="container">
<div class="row">
<div class="col-lg-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="cp_content">
<h4>Best Online Learning Platform</h4>
<h2>One Platfrom & Many <span><u>Courses</u></span> For You</h2>
<p>From blogs to emails to ad copies, auto-generate catchy, original, and high-converting copies in popular tones languages.</p>
<ul>
<li><span class="ti-check"></span>9/10 Average Satisfaction Rate</li>
<li><span class="ti-check"></span>96% Completitation Rate</li>
<li><span class="ti-check"></span>Friendly Environment & Expert Teacher</li>
</ul>
</div>
<div class="cp_btn">
<a class="btn_one" href="course.html">Explore Our Courses</a>
</div>
</div><!--- END COL -->
<div class="col-lg-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s" data-wow-offset="0">
<div class="cp_img">
<img src="assets/images/all-img/promo.png" class="img-fluid" alt="image">
<!-- <div class="wc_year">
<h3>20 Years of Experience <br />from 2002</h3>
</div> -->
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END COURSE PROMOTION -->
<!-- START NEWSLETTER -->
<section class="newsletter_area section-padding">
<div class="container">
<div class="row text-center">
<div class="col-lg-6 offset-lg-3 col-sm-12 col-xs-12">
<div class="subs_form">
<h3>Subscripbe to our newsletter, We don't make any spam.</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elitsed eiusmod tempor enim minim</p>
<form action="#" class="home_subs">
<input type="text" class="subscribe__input" placeholder="Enter your Email Address">
<button type="button" class="subscribe__btn"><i class="fa fa-paper-plane-o"></i></button>
</form>
</div>
</div><!-- END COL -->
</div><!-- END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END NEWSLETTER -->
<!-- START FAQ -->
<section class="faq_area section-padding">
<div class="container">
<div class="section-title">
<h2>Frequently Asked Question</h2>
<p>General <span><u>Questions</u></span></p>
</div>
<div class="row justify-content-center">
<div class="col-lg-6 col-sm-6 col-xs-12">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What does it take excellent author?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
Great value and so easy to use and saves me so much time! I was shocked by how much time and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to use.
</div>
</div>
</div><!-- END ACCORDION ITEM -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Who will view my content?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
Great value and so easy to use and saves me so much time! I was shocked by how much time and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to use.
</div>
</div>
</div><!-- END ACCORDION ITEM -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
What does it take become an author?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
Great value and so easy to use and saves me so much time! I was shocked by how much time and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to use.
</div>
</div>
</div><!-- END ACCORDION ITEM -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
How to Change my Password easily?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#accordionExample">
<div class="accordion-body">
Great value and so easy to use and saves me so much time! I was shocked by how much time and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to use.
</div>
</div>
</div><!-- END ACCORDION ITEM -->
<div class="accordion-item">
<h2 class="accordion-header" id="headingFive">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFive" aria-expanded="true" aria-controls="collapseFive">
How does it create content?
</button>
</h2>
<div id="collapseFive" class="accordion-collapse collapse" aria-labelledby="headingFive" data-bs-parent="#accordionExample">
<div class="accordion-body">
Great value and so easy to use and saves me so much time! I was shocked by how much time and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to use.
</div>
</div>
</div><!-- END ACCORDION ITEM -->
</div>
</div><!-- END COL -->
<div class="col-lg-6 col-sm-6 col-xs-12">
<div class="pt_faq">
<img src="assets/images/all-img/faq.png" class="img-fluid" alt="image" />
</div>
</div><!-- END COL -->
</div><!--END ROW -->
</div><!--- END CONTAINER -->
</section>
<!-- END FAQ -->
<!-- START BLOG -->
<section id="blog" class="blog_area section-padding">
<div class="container">
<div class="section-title">
<h2>News</h2>
<p>Our Latest <span><u>Blogs</u></span></p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="single_blog">
<img src="assets/images/blog/1.png" class="img-fluid" alt="image" />
<div class="content_box">
<span>August 25, 2024 | <a href="blog_single.html">Design</a></span>
<h2><a href="blog_single.html">Professional Mobile Painting and Sculpting</a></h2>
<a href="#" class="cta"><span>READ MORE</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
</div>
</div><!-- END COL-->
<div class="col-lg-4 col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="0">
<div class="single_blog">
<img src="assets/images/blog/2.png" class="img-fluid" alt="image" />
<div class="content_box">
<span>August 26, 2024 | <a href="blog_single.html">Education</a></span>
<h2><a href="blog_single.html">Professional Ceramic Moulding for Beginner</a></h2>
<a href="#" class="cta"><span>READ MORE</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
</div>
</div><!-- END COL-->
<div class="col-lg-4 col-sm-4 col-xs-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s" data-wow-offset="0">
<div class="single_blog">
<img src="assets/images/blog/3.png" class="img-fluid" alt="image" />
<div class="content_box">
<span>August 28, 2024 | <a href="blog_single.html">Programing</a></span>
<h2><a href="blog_single.html">Education Is About Create Leaders For Tomorrow </a></h2>
<a href="#" class="cta"><span>READ MORE</span>
<svg width="13px" height="10px" viewBox="0 0 13 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
</div>
</div>
</div><!-- END COL-->
</div><!-- / END ROW -->
</div><!-- END CONTAINER -->
</section>
<!-- END BLOG -->
<!-- START FOOTER -->
<div class="footer section-padding">
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6 col-xs-12">
<div class="single_footer">
<a href="index.html"><img src="assets/images/all-img/logo.png" alt=""></a>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis dignissim.</p>
</div>
<div class="foot_social">
<ul>
<li><a href="#">TW</a></li>
<li><a href="#">FB</a></li>
<li><a href="#">INS</a></li>
<li><a href="#">YT</a></li>
</ul>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-sm-6 col-xs-12">
<div class="single_footer">
<h4>Courses</h4>
<ul>
<li><a href="#">Creative Writing</a></li>
<li><a href="#">Digital Marketing</a></li>
<li><a href="#">SEO Business</a></li>
<li><a href="#">Social Marketing</a></li>
<li><a href="#">Graphic Design</a></li>
<li><a href="#">Website Development</a></li>
</ul>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-sm-6 col-xs-12">
<div class="single_footer">
<h4>Company</h4>
<ul>
<li><a href="#">About us</a></li>
<li><a href="#">Knowledge Base</a></li>
<li><a href="#">Affiliate Program</a></li>
<li><a href="#">Community</a></li>
<li><a href="#">Market API</a></li>
<li><a href="#">Support team</a></li>
</ul>
</div>
</div><!--- END COL -->
<div class="col-lg-3 col-sm-6 col-xs-12">
<div class="single_footer">
<h4>Contact Info</h4>
<div class="sf_contact">
<span class="ti-mobile"></span>
<h3>Phone number</h3>
<p>+88 457 845 695</p>
</div>
<div class="sf_contact">
<span class="ti-email"></span>
<h3>Email Address</h3>
<p>example#yourmail.com</p>
</div>
<div class="sf_contact">
<span class="ti-map"></span>
<h3>Office Address</h3>
<p>California, USA</p>
</div>
</div>
</div><!--- END COL -->
</div><!--- END ROW -->
<div class="row fc">
<div class="col-lg-6 col-sm-6 col-xs-12">
<div class="footer_copyright">
<p>© 2024. All Rights Reserved.</p>
</div>
</div>
<div class="col-lg-6 col-sm-6 col-xs-12">
<div class="footer_menu">
<ul>
<li><a href="#">Terms of use</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Cookie Policy</a></li>
</ul>
</div>