-
Notifications
You must be signed in to change notification settings - Fork 1
/
course-detail-adv.html
1010 lines (926 loc) · 49.5 KB
/
course-detail-adv.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>
<title>Eduport - LMS, Education and Course Theme</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Webestica.com">
<meta name="description" content="Eduport- LMS, Education and Course Theme">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap">
<!-- Plugins CSS -->
<link rel="stylesheet" type="text/css" href="assets/vendor/font-awesome/css/all.min.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/bootstrap-icons/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/plyr/plyr.css">
<!-- Theme CSS -->
<link id="style-switch" rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<!-- Header START -->
<header class="navbar-light navbar-sticky">
<!-- Logo Nav START -->
<nav class="navbar navbar-expand-xl">
<div class="container">
<!-- Logo START -->
<a class="navbar-brand" href="index.html">
<img class="light-mode-item navbar-brand-item" src="assets/images/logo.svg" alt="logo">
<img class="dark-mode-item navbar-brand-item" src="assets/images/logo-light.svg" alt="logo">
</a>
<!-- Logo END -->
<!-- Responsive navbar toggler -->
<button class="navbar-toggler ms-auto" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-animation">
<span></span>
<span></span>
<span></span>
</span>
</button>
<!-- Main navbar START -->
<div class="navbar-collapse w-100 collapse" id="navbarCollapse">
<!-- Nav Main menu START -->
<ul class="navbar-nav navbar-nav-scroll mx-auto">
<!-- Nav item 1 Demos -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="demoMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Demos</a>
<ul class="dropdown-menu" aria-labelledby="demoMenu">
<li> <a class="dropdown-item" href="index.html">Home Default</a></li>
<li> <a class="dropdown-item" href="index-2.html">Home Education</a></li>
<li> <a class="dropdown-item" href="index-3.html">Home Academy</a></li>
<li> <a class="dropdown-item" href="index-4.html">Home Course</a></li>
<li> <a class="dropdown-item" href="index-5.html">Home University</a></li>
<li> <a class="dropdown-item" href="index-6.html">Home Kindergarten</a></li>
<li> <a class="dropdown-item" href="index-7.html">Home Landing</a></li>
<li> <a class="dropdown-item" href="index-8.html">Home Tutor</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="request-demo.html">Request a demo</a></li>
<li> <a class="dropdown-item" href="book-class.html">Book a Class</a></li>
<li> <a class="dropdown-item" href="request-access.html">Free Access</a></li>
<li> <a class="dropdown-item" href="university-admission-form.html">Admission Form</a></li>
<li> <hr class="dropdown-divider"></li>
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown levels</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<!-- dropdown submenu open right -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown (end)</a>
<ul class="dropdown-menu" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<!-- dropdown submenu open left -->
<li class="dropdown-submenu dropstart">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown (start)</a>
<ul class="dropdown-menu dropdown-menu-end" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
</ul>
</li>
<!-- Nav item 2 Pages -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="pagesMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages</a>
<ul class="dropdown-menu" aria-labelledby="pagesMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Course</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="course-grid.html">Course Grid Classic</a></li>
<li> <a class="dropdown-item" href="course-grid-2.html">Course Grid Minimal</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="course-list.html">Course List Classic</a></li>
<li> <a class="dropdown-item" href="course-list-2.html">Course List Minimal</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="course-detail.html">Course Detail Classic</a></li>
<li> <a class="dropdown-item" href="course-detail-min.html">Course Detail Minimal</a></li>
<li> <a class="dropdown-item" href="course-detail-adv.html">Course Detail Advance</a></li>
<li> <a class="dropdown-item" href="course-video-player.html">Course Full Screen Video</a></li>
</ul>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">About</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="about.html">About Us</a></li>
<li> <a class="dropdown-item" href="contact-us.html">Contact Us</a></li>
<li> <a class="dropdown-item" href="blog-grid.html">Blog Grid</a></li>
<li> <a class="dropdown-item" href="blog-masonry.html">Blog Masonry</a></li>
<li> <a class="dropdown-item" href="blog-detail.html">Blog Detail</a></li>
<li> <a class="dropdown-item" href="pricing.html">Pricing</a></li>
</ul>
</li>
<li> <a class="dropdown-item" href="instructor-list.html">Instructor List</a></li>
<li> <a class="dropdown-item" href="instructor-single.html">Instructor Single</a></li>
<li> <a class="dropdown-item" href="become-instructor.html">Become an Instructor</a></li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Authentication</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="sign-in.html">Sign In</a></li>
<li> <a class="dropdown-item" href="sign-up.html">Sign Up</a></li>
<li> <a class="dropdown-item" href="forgot-password.html">Forgot Password</a></li>
</ul>
</li>
<li> <a class="dropdown-item" href="faq.html">FAQs</a></li>
<li> <a class="dropdown-item" href="error-404.html">Error 404</a></li>
<li> <a class="dropdown-item" href="coming-soon.html">Coming Soon</a></li>
<li> <a class="dropdown-item" href="cart.html">Cart</a></li>
<li> <a class="dropdown-item" href="checkout.html">Checkout</a></li>
<li> <a class="dropdown-item" href="empty-cart.html">Empty Cart</a></li>
<li> <a class="dropdown-item" href="wishlist.html">Wishlist</a></li>
</ul>
</li>
<!-- Nav item 3 Account -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="accounntMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Accounts</a>
<ul class="dropdown-menu" aria-labelledby="accounntMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#"><i class="fas fa-user-tie fa-fw me-1"></i>Instructor</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="instructor-dashboard.html"><i class="bi bi-grid-fill fa-fw me-1"></i>Dashboard</a> </li>
<li> <a class="dropdown-item" href="instructor-manage-course.html"><i class="bi bi-basket-fill fa-fw me-1"></i>Courses</a> </li>
<li> <a class="dropdown-item" href="instructor-create-course.html"><i class="bi bi-file-earmark-plus-fill fa-fw me-1"></i>Create Course</a> </li>
<li> <a class="dropdown-item" href="course-added.html"><i class="bi bi-file-check-fill fa-fw me-1"></i>Course Added</a> </li>
<li> <a class="dropdown-item" href="instructor-earning.html"><i class="fas fa-chart-line fa-fw me-1"></i>Earnings</a> </li>
<li> <a class="dropdown-item" href="instructor-studentlist.html"><i class="fas fa-user-graduate fa-fw me-1"></i>Students</a> </li>
<li> <a class="dropdown-item" href="instructor-order.html"><i class="bi bi-cart-check-fill fa-fw me-1"></i>Orders</a> </li>
<li> <a class="dropdown-item" href="instructor-review.html"><i class="bi bi-star-fill fa-fw me-1"></i>Reviews</a> </li>
<li> <a class="dropdown-item" href="instructor-payout.html"><i class="fas fa-wallet fa-fw me-1"></i>Payout</a> </li>
</ul>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#"><i class="fas fa-user-graduate fa-fw me-1"></i>Student</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="student-dashboard.html"><i class="bi bi-grid-fill fa-fw me-1"></i>Dashboard</a> </li>
<li> <a class="dropdown-item" href="student-subscription.html"><i class="bi bi-card-checklist fa-fw me-1"></i>My Subscriptions</a> </li>
<li> <a class="dropdown-item" href="student-course-list.html"><i class="bi bi-basket-fill fa-fw me-1"></i>Courses</a> </li>
<li> <a class="dropdown-item" href="student-payment-info.html"><i class="bi bi-credit-card-2-front-fill fa-fw me-1"></i>Payment Info</a> </li>
<li> <a class="dropdown-item" href="student-bookmark.html"><i class="fas bi-cart-check-fill fa-fw me-1"></i>Wishlist</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#"><i class="fas fa-user-cog fa-fw me-1"></i>Admin (Coming Soon)</a> </li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="instructor-edit-profile.html"><i class="fas fa-fw fa-edit me-1"></i>Edit Profile</a> </li>
<li> <a class="dropdown-item" href="instructor-setting.html"><i class="fas fa-fw fa-cog me-1"></i>Settings</a> </li>
<li> <a class="dropdown-item" href="instructor-delete-account.html"><i class="fas fa-fw fa-trash-alt me-1"></i>Delete Profile</a> </li>
</ul>
</li>
<!-- Nav item 4 Component-->
<li class="nav-item"><a class="nav-link" href="docs/alerts.html">Components</a></li>
<!-- Nav item 5 link-->
<li class="nav-item dropdown">
<a class="nav-link" href="#" id="advanceMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-ellipsis-h"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end min-w-auto" data-bs-popper="none">
<li>
<a class="dropdown-item" href="index-2.htm" target="_blank">
<i class="text-warning fa-fw bi bi-life-preserver me-2"></i>Support
</a>
</li>
<li>
<a class="dropdown-item" href="docs/index.html" target="_blank">
<i class="text-danger fa-fw bi bi-card-text me-2"></i>Documentation
</a>
</li>
<li> <hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="rtl/index.htm" target="_blank">
<i class="text-info fa-fw bi bi-toggle-off me-2"></i>RTL demo
</a>
</li>
<li>
<a class="dropdown-item" href="https://themes.getbootstrap.com/store/webestica/" target="_blank">
<i class="text-success fa-fw bi bi-cloud-download-fill me-2"></i>Buy Eduport!
</a>
</li>
</ul>
</li>
</ul>
<!-- Nav Main menu END -->
<!-- Nav Search START -->
<div class="nav my-3 my-xl-0 px-4 flex-nowrap align-items-center">
<div class="nav-item w-100">
<form class="position-relative">
<input class="form-control pe-5 bg-transparent" type="search" placeholder="Search" aria-label="Search">
<button class="btn bg-transparent px-2 py-0 position-absolute top-50 end-0 translate-middle-y" type="submit"><i class="fas fa-search fs-6 "></i></button>
</form>
</div>
</div>
<!-- Nav Search END -->
</div>
<!-- Main navbar END -->
<!-- Profile START -->
<div class="dropdown ms-1 ms-lg-0">
<a class="avatar avatar-sm p-0" href="#" id="profileDropdown" role="button" data-bs-auto-close="outside" data-bs-display="static" data-bs-toggle="dropdown" aria-expanded="false">
<img class="avatar-img rounded-circle" src="assets/images/avatar/01.jpg" alt="avatar">
</a>
<ul class="dropdown-menu dropdown-animation dropdown-menu-end shadow pt-3" aria-labelledby="profileDropdown">
<!-- Profile info -->
<li class="px-3">
<div class="d-flex align-items-center">
<!-- Avatar -->
<div class="avatar me-3">
<img class="avatar-img rounded-circle shadow" src="assets/images/avatar/01.jpg" alt="avatar">
</div>
<div>
<a class="h6" href="#">Lori Ferguson</a>
<p class="small m-0">example@gmail.com</p>
</div>
</div>
<hr>
</li>
<!-- Links -->
<li><a class="dropdown-item" href="#"><i class="bi bi-person fa-fw me-2"></i>Edit Profile</a></li>
<li><a class="dropdown-item" href="#"><i class="bi bi-gear fa-fw me-2"></i>Account Settings</a></li>
<li><a class="dropdown-item" href="#"><i class="bi bi-info-circle fa-fw me-2"></i>Help</a></li>
<li><a class="dropdown-item bg-danger-soft-hover" href="#"><i class="bi bi-power fa-fw me-2"></i>Sign Out</a></li>
<li> <hr class="dropdown-divider"></li>
<!-- Dark mode switch START -->
<li>
<div class="modeswitch-wrap" id="darkModeSwitch">
<div class="modeswitch-item">
<div class="modeswitch-icon"></div>
</div>
<span>Dark mode</span>
</div>
</li>
<!-- Dark mode switch END -->
</ul>
</div>
<!-- Profile START -->
</div>
</nav>
<!-- Logo Nav END -->
</header>
<!-- Header END -->
<!-- **************** MAIN CONTENT START **************** -->
<main>
<!-- =======================
Page content START -->
<section class="pt-3 pt-xl-5">
<div class="container" data-sticky-container="">
<div class="row g-4">
<!-- Main content START -->
<div class="col-xl-8">
<div class="row g-4">
<!-- Title START -->
<div class="col-12">
<!-- Title -->
<h2>The Complete Digital Marketing Course - 12 Courses in 1</h2>
<p>Satisfied conveying a dependent contented he gentleman agreeable do be. Warrant private blushes removed an in equally totally if. Delivered dejection necessary objection do Mr prevailed. Mr feeling does chiefly cordial in do.</p>
<!-- Content -->
<ul class="list-inline mb-0">
<li class="list-inline-item fw-light h6 me-3 mb-1 mb-sm-0"><i class="fas fa-star me-2"></i>4.5/5.0</li>
<li class="list-inline-item fw-light h6 me-3 mb-1 mb-sm-0"><i class="fas fa-user-graduate me-2"></i>12k Enrolled</li>
<li class="list-inline-item fw-light h6 me-3 mb-1 mb-sm-0"><i class="fas fa-signal me-2"></i>All levels</li>
<li class="list-inline-item fw-light h6 me-3 mb-1 mb-sm-0"><i class="bi bi-patch-exclamation-fill me-2"></i>Last updated 09/2021</li>
<li class="list-inline-item fw-light h6"><i class="fas fa-globe me-2"></i>English</li>
</ul>
</div>
<!-- Title END -->
<!-- Image and video -->
<div class="col-12 position-relative">
<div class="video-player rounded-3">
<video controls="" crossorigin="anonymous" playsinline="" poster="assets/images/videos/poster.jpg">
<source src="assets/images/videos/360p.mp4" type="video/mp4" size="360">
<source src="assets/images/videos/720p.mp4" type="video/mp4" size="720">
<source src="assets/images/videos/1080p.mp4" type="video/mp4" size="1080">
<!-- Caption files -->
<track kind="captions" label="English" srclang="en" src="assets/images/videos/en.vtt.txt" default="">
<track kind="captions" label="French" srclang="fr" src="assets/images/videos/fr.vtt.txt">
</track></track></video>
</div>
</div>
<!-- About course START -->
<div class="col-12">
<div class="card border">
<!-- Card header START -->
<div class="card-header border-bottom">
<h3 class="mb-0">Course description</h3>
</div>
<!-- Card header END -->
<!-- Card body START -->
<div class="card-body">
<p class="mb-3">Welcome to the <strong> Digital Marketing Ultimate Course Bundle - 12 Courses in 1 (Over 36 hours of content)</strong></p>
<p class="mb-3">In this practical hands-on training, you’re going to learn to become a digital marketing expert with this <strong> ultimate course bundle that includes 12 digital marketing courses in 1!</strong></p>
<p class="mb-0">If you wish to find out the skills that should be covered in a basic digital marketing course syllabus in India or anywhere around the world, then reading this blog will help. Before we delve into the advanced <strong><a href="#" class="text-reset text-decoration-underline">digital marketing course</a></strong> syllabus, let’s look at the scope of digital marketing and what the future holds.</p>
<!-- Collapse body -->
<div class="collapse" id="collapseContent">
<p class="my-3">We focus a great deal on the understanding of behavioral psychology and influence triggers which are crucial for becoming a well rounded Digital Marketer. We understand that theory is important to build a solid foundation, we understand that theory alone isn’t going to get the job done so that’s why this course is packed with practical hands-on examples that you can follow step by step.</p>
<p class="mb-0">Behavioral psychology and influence triggers which are crucial for becoming a well rounded Digital Marketer. We understand that theory is important to build a solid foundation, we understand that theory alone isn’t going to get the job done so that’s why this course is packed with practical hands-on examples that you can follow step by step.</p>
</div>
<!-- Collapse button -->
<a class="p-0 mb-0 mt-2 btn-more d-flex align-items-center" data-bs-toggle="collapse" href="#collapseContent" role="button" aria-expanded="false" aria-controls="collapseContent">
See <span class="see-more ms-1">more</span><span class="see-less ms-1">less</span><i class="fas fa-angle-down ms-2"></i>
</a>
<!-- List content -->
<h5 class="mt-4">What you’ll learn</h5>
<div class="row mb-3">
<div class="col-md-6">
<ul class="list-group list-group-borderless">
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Digital marketing course introduction</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Customer Life cycle</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>What is Search engine optimization(SEO)</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Facebook ADS</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Facebook Messenger Chatbot</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Search engine optimization tools</li>
</ul>
</div>
<div class="col-md-6">
<ul class="list-group list-group-borderless">
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Why SEO</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>URL Structure</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Featured Snippet</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>SEO tips and tricks</li>
<li class="list-group-item h6 fw-light d-flex mb-0"><i class="fas fa-check-circle text-success me-2"></i>Google tag manager</li>
</ul>
</div>
</div>
<p class="mb-0">As it so contrasted oh estimating instrument. Size like body some one had. Are conduct viewing boy minutes warrant the expense? Tolerably behavior may admit daughters offending her ask own. Praise effect wishes change way and any wanted. Lively use looked latter regard had. Do he it part more last in. </p>
</div>
<!-- Card body START -->
</div>
</div>
<!-- About course END -->
<!-- Curriculum START -->
<div class="col-12">
<div class="card border rounded-3">
<!-- Card header START -->
<div class="card-header border-bottom">
<h3 class="mb-0">Curriculum</h3>
</div>
<!-- Card header END -->
<!-- Card body START -->
<div class="card-body">
<div class="row g-5">
<!-- Lecture item START -->
<div class="col-12">
<!-- Curriculum item -->
<h5 class="mb-4">Introduction of Digital Marketing (3 lectures)</h5>
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Introduction</h6>
<p class="mb-2 mb-sm-0 small">10m 56s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">What is Digital Marketing</h6>
<p class="mb-2 mb-sm-0 small">18m 30s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-light btn-round mb-0 flex-shrink-0"><i class="bi bi-lock-fill"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Type of Digital Marketing</h6>
<p class="mb-2 mb-sm-0 small">22m 26s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-orange mb-0">Premium</a>
</div>
</div>
<!-- Lecture item END -->
<!-- Lecture item START -->
<div class="col-12">
<!-- Curriculum item -->
<h5 class="mb-4">Customer Life cycle (4 lectures)</h5>
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">What is Digital Marketing</h6>
<p class="mb-2 mb-sm-0 small">10m 56s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">15 Tips for Writing Magnetic Headlines</h6>
<p class="mb-2 mb-sm-0 small">18m 30s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-light btn-round mb-0 flex-shrink-0"><i class="bi bi-lock-fill"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">How to Write Like Your Customers Talk</h6>
<p class="mb-2 mb-sm-0 small">22m 26s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-orange mb-0">Premium</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-light btn-round mb-0 flex-shrink-0"><i class="bi bi-lock-fill"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">How to Flip Features Into Benefits</h6>
<p class="mb-2 mb-sm-0 small">18m 26s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-orange mb-0">Premium</a>
</div>
</div>
<!-- Lecture item END -->
<!-- Lecture item START -->
<div class="col-12">
<!-- Curriculum item -->
<h5 class="mb-4">What is Search Engine Optimization(SEO) (5 lectures)</h5>
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">How to SEO Optimise Your Homepage</h6>
<p class="mb-2 mb-sm-0 small">18m 21s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">How to Write Title Tags Search Engines Love</h6>
<p class="mb-2 mb-sm-0 small">7m 30s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">SEO Keyword Planning</h6>
<p class="mb-2 mb-sm-0 small">15m 32s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Internal and External Links</h6>
<p class="mb-2 mb-sm-0 small">17m 30s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Measuring SEO Effectiveness</h6>
<p class="mb-2 mb-sm-0 small">25m 30s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
</div>
<!-- Lecture item END -->
<!-- Collapse body START -->
<div class="collapse mt-0" id="collapseCourse">
<!-- Lecture item START -->
<div class="col-12 mt-5">
<!-- Curriculum item -->
<h5 class="mb-4">YouTube Marketing (5 lectures)</h5>
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Video Flow</h6>
<p class="mb-2 mb-sm-0 small">25m 20s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-danger-soft btn-round mb-0 flex-shrink-0"><i class="fas fa-play"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Webmaster Tool</h6>
<p class="mb-2 mb-sm-0 small">15m 20s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-success mb-0">Play</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-light btn-round mb-0 flex-shrink-0"><i class="bi bi-lock-fill"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Featured Contents on Channel</h6>
<p class="mb-2 mb-sm-0 small">32m 26s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-orange mb-0">Premium</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-light btn-round mb-0 flex-shrink-0"><i class="bi bi-lock-fill"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Channel Analytics</h6>
<p class="mb-2 mb-sm-0 small">18m 20s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-orange mb-0">Premium</a>
</div>
<!-- Divider -->
<hr>
<!-- Curriculum item -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div class="d-flex">
<a href="#" class="btn btn-light btn-round mb-0 flex-shrink-0"><i class="bi bi-lock-fill"></i></a>
<div class="ms-2 ms-sm-3 mt-1 mt-sm-0">
<h6 class="mb-0">Managing Comments</h6>
<p class="mb-2 mb-sm-0 small">20m 20s</p>
</div>
</div>
<!-- Button -->
<a href="#" class="btn btn-sm btn-orange mb-0">Premium</a>
</div>
</div>
<!-- Lecture item END -->
</div>
<!-- Collapse body END -->
<!-- Collapse button -->
<a class="mb-0 mt-4 btn-more d-flex align-items-center justify-content-center" data-bs-toggle="collapse" href="#collapseCourse" role="button" aria-expanded="false" aria-controls="collapseCourse">
See <span class="see-more mx-1">more</span><span class="see-less mx-1">less</span> video<i class="fas fa-angle-down ms-2"></i>
</a>
</div>
</div>
<!-- Card body START -->
</div>
</div>
<!-- Curriculum END -->
<!-- FAQs START -->
<div class="col-12">
<div class="card border rounded-3">
<!-- Card header START -->
<div class="card-header border-bottom">
<h3 class="mb-0">Frequently Asked Questions</h3>
</div>
<!-- Card header END -->
<!-- Card body START -->
<div class="card-body">
<!-- FAQ item -->
<div>
<h6>How Digital Marketing Work?</h6>
<p class="mb-0">Preference any astonished unreserved Mrs. Prosperous understood Middletons in conviction an uncommonly do. Supposing so be resolving breakfast am or perfectly. It drew a hill from me. Valley by oh twenty direct me so. Departure defective arranging rapturous did believe him all had supported. Family months lasted simple set nature vulgar him. Picture for attempt joy excited ten carried manners talking how. Suspicion neglected the resolving agreement perceived at an. Comfort reached gay perhaps chamber his six detract besides add.</p>
</div>
<!-- FAQ item -->
<div class="mt-4">
<h6>What is SEO?</h6>
<p class="mb-0">Meant balls it if up doubt small purse. Required his you put the outlived answered position. A pleasure exertion if believed provided to. All led out world this music while asked. Paid mind even sons does he door no. Attended overcame repeated it is perceived Marianne in. I think on style child of. Servants moreover in sensible it ye possible.</p>
<p class="mt-2 mb-0">Person she control of to beginnings view looked eyes Than continues its and because and given and shown creating curiously to more in are man were smaller by we instead the these sighed Avoid in the sufficient me real man longer of his how her for countries to brains warned notch important Finds be to the of on the increased explain noise of power deep asking contribution this live of suppliers goals bit separated poured sort several the was organization the if relations go work after mechanic But we've area wasn't everything needs of and doctor where would a of</p>
</div>
<!-- FAQ item -->
<div class="mt-4">
<h6>Who should join this course?</h6>
<p class="mb-0">Two before narrow not relied how except moment myself Dejection assurance mrs led certainly So gate at no only none open Betrayed at properly it of graceful on Dinner abroad am depart ye turned hearts as me wished Therefore allowance too perfectly gentleman supposing man his now Families goodness all eat out bed steepest servants Explained the incommode sir improving northward immediate eat Man denoting received you sex possible you Shew park own loud son door less yet </p>
</div>
<!-- FAQ item -->
<div class="mt-4">
<h6>What are the T&C for this program?</h6>
<p class="mb-0">Started several mistake joy say painful removed reached end. State burst think end are its. Arrived off she elderly beloved him affixed noisier yet. Course regard to up he hardly. View four has said do men saw find dear shy. Talent men wicket add garden. </p>
</div>
<!-- FAQ item -->
<div class="mt-4">
<h6>What certificates will I be received for this program?</h6>
<p class="mb-0">Lose john poor same it case do year we Full how way even the sigh Extremely nor furniture fat questions now provision incommode preserved Our side fail to find like now Discovered traveling for insensible partiality unpleasing impossible she Sudden up my excuse to suffer ladies though or Bachelor possible Marianne directly confined relation as on he </p>
</div>
<!-- FAQ item -->
<div class="mt-4">
<h6>What happens after the trial ends?</h6>
<p class="mb-0">Preference any astonished unreserved Mrs. Prosperous understood Middletons in conviction an uncommonly do. Supposing so be resolving breakfast am or perfectly. Is drew am hill from me. Valley by oh twenty direct me so. Departure defective arranging rapturous did believe him all had supported. Family months lasted simple set nature vulgar him. Suspicion neglected he resolving agreement perceived at an. Comfort reached gay perhaps chamber his six detract besides add.</p>
</div>
</div>
<!-- Card body START -->
</div>
</div>
<!-- FAQs END -->
</div>
</div>
<!-- Main content END -->
<!-- Right sidebar START -->
<div class="col-xl-4">
<div data-sticky="" data-margin-top="80" data-sticky-for="768">
<div class="row g-4">
<div class="col-md-6 col-xl-12">
<!-- Course info START -->
<div class="card card-body border p-4">
<!-- Price and share button -->
<div class="d-flex justify-content-between align-items-center">
<!-- Price -->
<h3 class="fw-bold mb-0 me-2">$295.55</h3>
<!-- Share button with dropdown -->
<div class="dropdown">
<a href="#" class="btn btn-sm btn-light rounded mb-0 small" role="button" id="dropdownShare" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fas fa-fw fa-share-alt"></i>
</a>
<!-- dropdown button -->
<ul class="dropdown-menu dropdown-w-sm dropdown-menu-end min-w-auto shadow rounded" aria-labelledby="dropdownShare">
<li><a class="dropdown-item" href="#"><i class="fab fa-twitter-square me-2"></i>Twitter</a></li>
<li><a class="dropdown-item" href="#"><i class="fab fa-facebook-square me-2"></i>Facebook</a></li>
<li><a class="dropdown-item" href="#"><i class="fab fa-linkedin me-2"></i>LinkedIn</a></li>
<li><a class="dropdown-item" href="#"><i class="fas fa-copy me-2"></i>Copy link</a></li>
</ul>
</div>
</div>
<!-- Buttons -->
<div class="mt-3 d-grid">
<a href="#" class="btn btn-outline-primary">Add to cart</a>
<a href="#" class="btn btn-success">Buy now</a>
</div>
<!-- Divider -->
<hr>
<!-- Title -->
<h5 class="mb-3">This course includes</h5>
<ul class="list-group list-group-borderless border-0">
<li class="list-group-item px-0 d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="fas fa-fw fa-book-open text-primary"></i>Lectures</span>
<span>30</span>
</li>
<li class="list-group-item px-0 d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="fas fa-fw fa-clock text-primary"></i>Duration</span>
<span>4h 50m</span>
</li>
<li class="list-group-item px-0 d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="fas fa-fw fa-signal text-primary"></i>Skills</span>
<span>Beginner</span>
</li>
<li class="list-group-item px-0 d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="fas fa-fw fa-globe text-primary"></i>Language</span>
<span>English</span>
</li>
<li class="list-group-item px-0 d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="fas fa-fw fa-user-clock text-primary"></i>Deadline</span>
<span>Nov 30 2021</span>
</li>
<li class="list-group-item px-0 d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="fas fa-fw fa-medal text-primary"></i>Certificate</span>
<span>Yes</span>
</li>
</ul>
<!-- Divider -->
<hr>
<!-- Instructor info -->
<div class="d-sm-flex align-items-center">
<!-- Avatar image -->
<div class="avatar avatar-xl">
<img class="avatar-img rounded-circle" src="assets/images/avatar/05.jpg" alt="avatar">
</div>
<div class="ms-sm-3 mt-2 mt-sm-0">
<h5 class="mb-0"><a href="#">By Jacqueline Miller</a></h5>
<p class="mb-0 small">Founder Eduport company</p>
</div>
</div>
<!-- Rating and follow -->
<div class="d-sm-flex justify-content-sm-between align-items-center mt-0 mt-sm-2">
<!-- Rating star -->
<ul class="list-inline mb-0">
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star-half-alt text-warning"></i></li>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
<!-- button -->
<button class="btn btn-sm btn-primary mb-0 mt-2 mt-sm-0">Follow</button>
</div>
</div>
<!-- Course info END -->
</div>
<!-- Tags START -->
<div class="col-md-6 col-xl-12">
<div class="card card-body border p-4">
<h4 class="mb-3">Popular Tags</h4>
<ul class="list-inline mb-0">
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">blog</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">business</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">theme</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">bootstrap</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">data science</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">web development</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">tips</a> </li>
<li class="list-inline-item"> <a class="btn btn-outline-light btn-sm" href="#">machine learning</a> </li>
</ul>
</div>
</div>
<!-- Tags END -->
</div><!-- Row End -->
</div>
</div>
<!-- Right sidebar END -->
</div><!-- Row END -->
</div>
</section>
<!-- =======================
Page content END -->
</main>
<!-- **************** MAIN CONTENT END **************** -->
<!-- =======================
Footer START -->
<footer class="pt-5 bg-light">
<div class="container">
<!-- Row START -->
<div class="row g-4">
<!-- Widget 1 START -->
<div class="col-lg-3">
<!-- logo -->
<a class="me-0" href="index.html">
<img class="light-mode-item h-40px" src="assets/images/logo.svg" alt="logo">
<img class="dark-mode-item h-40px" src="assets/images/logo-light.svg" alt="logo">
</a>
<p class="my-3">Eduport education theme, built specifically for the education centers which is dedicated to teaching and involve learners. </p>
<!-- Social media icon -->
<ul class="list-inline mb-0 mt-3">
<li class="list-inline-item"> <a class="btn btn-white btn-sm shadow px-2 text-facebook" href="#"><i class="fab fa-fw fa-facebook-f"></i></a> </li>
<li class="list-inline-item"> <a class="btn btn-white btn-sm shadow px-2 text-instagram" href="#"><i class="fab fa-fw fa-instagram"></i></a> </li>
<li class="list-inline-item"> <a class="btn btn-white btn-sm shadow px-2 text-twitter" href="#"><i class="fab fa-fw fa-twitter"></i></a> </li>
<li class="list-inline-item"> <a class="btn btn-white btn-sm shadow px-2 text-linkedin" href="#"><i class="fab fa-fw fa-linkedin-in"></i></a> </li>
</ul>
</div>
<!-- Widget 1 END -->
<!-- Widget 2 START -->
<div class="col-lg-6">
<div class="row g-4">
<!-- Link block -->
<div class="col-6 col-md-4">
<h5 class="mb-2 mb-md-4">Company</h5>
<ul class="nav flex-column">
<li class="nav-item"><a class="nav-link" href="#">About us</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact us</a></li>
<li class="nav-item"><a class="nav-link" href="#">News and Blogs</a></li>
<li class="nav-item"><a class="nav-link" href="#">Library</a></li>
<li class="nav-item"><a class="nav-link" href="#">Career</a></li>
</ul>
</div>
<!-- Link block -->
<div class="col-6 col-md-4">
<h5 class="mb-2 mb-md-4">Community</h5>
<ul class="nav flex-column">
<li class="nav-item"><a class="nav-link" href="#">Documentation</a></li>
<li class="nav-item"><a class="nav-link" href="#">Faq</a></li>
<li class="nav-item"><a class="nav-link" href="#">Forum</a></li>
<li class="nav-item"><a class="nav-link" href="#">Sitemap</a></li>
</ul>
</div>
<!-- Link block -->
<div class="col-6 col-md-4">
<h5 class="mb-2 mb-md-4">Teaching</h5>
<ul class="nav flex-column">
<li class="nav-item"><a class="nav-link" href="#">Become a teacher</a></li>
<li class="nav-item"><a class="nav-link" href="#">How to guide</a></li>
<li class="nav-item"><a class="nav-link" href="#">Terms & Conditions</a></li>
</ul>
</div>
</div>
</div>
<!-- Widget 2 END -->
<!-- Widget 3 START -->
<div class="col-lg-3">
<h5 class="mb-2 mb-md-4">Contact</h5>
<!-- Time -->
<p class="mb-2">
Toll free:<span class="h6 fw-light ms-2">+1234 568 963</span>
<span class="d-block small">(9:AM to 8:PM IST)</span>
</p>
<p class="mb-0">Email:<span class="h6 fw-light ms-2">example@gmail.com</span></p>
<div class="row g-2 mt-2">
<!-- Google play store button -->
<div class="col-6 col-sm-4 col-md-3 col-lg-6">
<a href="#"> <img src="assets/images/client/google-play.svg" alt=""> </a>
</div>
<!-- App store button -->
<div class="col-6 col-sm-4 col-md-3 col-lg-6">
<a href="#"> <img src="assets/images/client/app-store.svg" alt="app-store"> </a>
</div>
</div> <!-- Row END -->
</div>
<!-- Widget 3 END -->
</div><!-- Row END -->
<!-- Divider -->
<hr class="mt-4 mb-0">
<!-- Bottom footer -->
<div class="py-3">
<div class="container px-0">
<div class="d-md-flex justify-content-between align-items-center py-3 text-center text-md-left">
<!-- copyright text -->
<div class="text-primary-hover"> Copyrights <a href="#" class="text-body">©2021 Eduport</a>. All rights reserved. </div>
<!-- copyright links-->
<div class=" mt-3 mt-md-0">
<ul class="list-inline mb-0">
<li class="list-inline-item">
<!-- Language selector -->
<div class="dropup mt-0 text-center text-sm-end">
<a class="dropdown-toggle nav-link" href="#" role="button" id="languageSwitcher" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fas fa-globe me-2"></i>Language
</a>
<ul class="dropdown-menu min-w-auto" aria-labelledby="languageSwitcher">
<li><a class="dropdown-item me-4" href="#"><img class="fa-fw me-2" src="assets/images/flags/uk.svg" alt="">English</a></li>
<li><a class="dropdown-item me-4" href="#"><img class="fa-fw me-2" src="assets/images/flags/gr.svg" alt="">German </a></li>
<li><a class="dropdown-item me-4" href="#"><img class="fa-fw me-2" src="assets/images/flags/sp.svg" alt="">French</a></li>
</ul>
</div>
</li>
<li class="list-inline-item"><a class="nav-link" href="#">Terms of use</a></li>
<li class="list-inline-item"><a class="nav-link pe-0" href="#">Privacy policy</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- =======================
Footer END -->
<!-- Back to top -->
<div class="back-top"><i class="bi bi-arrow-up-short position-absolute top-50 start-50 translate-middle"></i></div>
<!-- Bootstrap JS -->
<script src="assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js"></script>