-
Notifications
You must be signed in to change notification settings - Fork 0
/
details3.html
1096 lines (1048 loc) · 37.9 KB
/
details3.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>
<link rel="stylesheet" href="path/to/bootstrap/css/bootstrap.min.css" />
<link
rel="stylesheet"
href="path/to/font-awesome/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/lightslider/1.1.6/css/lightslider.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/details.css" />
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course</title>
<link rel="shortcut icon" type="image/x-icon" href="img/logo2.png" />
<!--Google Fonts-->
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap");
</style>
<!--Google Fonts-->
<!-- for nav dropdown-->
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"
></script>
<!-- for nav dropdown-->
<!-- Swal -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- Swal -->
</head>
<body>
<!-- nav -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top custom_nav">
<!-- <button id="sign-out-button" > TEST</button> -->
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="img/logo2.png" width="32" height="30" alt="" class="d-inline-block align-top">
Foresight
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-expanded="false">
Categories
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="courses.html?course_id=1">Development & Software</a></li>
<li><a class="dropdown-item" href="courses.html?course_id=2">Mathematics</a></li>
<li>
</li>
<li><a class="dropdown-item" href="courses.html?course_id=3">Health & Fitness</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" href="index.html#support">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="aboutUs.html">About us</a>
</li>
</ul>
<div class="d-flex">
<a href="Login.html" id="navLogin" class="btn btn-sm btn-success" style="display: block;"><b>Log in / Sign Up</b></a>
</div>
<div class="d-flex">
<a href="favourites.html" style="text-decoration: none;"><i class="fa fa-heart" id="navFav" style="font-size:24px; color:#ca1711; margin: 10px 5px 10px 10px; "></i></a>
</div>
<!--Profie dropdown-->
<div class="dropdown" id="navUser">
<a class="btn btn-sm" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"><img src="img/user.png" style="width: 35px; height: 35px;"></a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<li class="dropdown-item">
<a href="profile.html"><img src=img/user.png width="40" height="40"><b class="ml-2">fName</b></a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li class="dropdown-item">
<a class="dropdown-item" href="profile.html">Settings</a>
</li>
<li class="dropdown-item">
<a class="dropdown-item" href="index.html#support">Help</a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li class="dropdown-item">
<a class="dropdown-item" id="sign-out-button" style="color:#ca1711; text-align: right;"><b>Sign out</b></a>
</li>
</ul>
</div>
<!--Profie dropdown-->
</div>
</div>
</nav>
<!-- nav -->
<section id="details3_1">
<section id="home">
<h2>Shoulder joint assesment and treatment</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source src="img/video.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<!-- <img class="course-image" src="img/c1.jfif" alt="" /> -->
<div class="course-head">
<div class="c-name">
<h2>Advanced physiotherapy</h2>
<div class="star">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<p></p>
</div>
<span>$45.99</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>physiotherapist</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
The prerequisite for any treatment in the shoulder region of a
patient with pain is a precise and comprehensive picture of the
signs and symptoms as they occur during the assessment and as they
existed until then
<br /><br />
its many movements, and the many lesions that may occur either
inside or outside the joints, the shoulder complex is difficult to
assess.
<br /><br />
Having a systematic and structured approach to the shoulder history
and examination
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Utilize manual therapy skills in the assesment of the shoulder
joint
</p>
<p>
<i class="fa fa-check-circle"> </i>
Complete systemanic subjective examination related shoulder joint
pathology
</p>
<p>
<i class="fa fa-check-circle"> </i>
Prescribe different types of excersies for shoulder mucsles based
on EMG studies
</p>
<p>
<i class="fa fa-check-circle"> </i>
HIntegerate manual therapy skills into the overall plan of care
</p>
<p>
<i class="fa fa-check-circle"> </i>
select appropriate objective examination relateed to the cinical
shoulder
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
55 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
80 article
</p>
<p>
<i class="fa fa-cloud-download"> </i>
Downloadable Resources
</p>
<p>
<i class="fa fa-calendar"> </i>
Full lifetime access
</p>
<p>
<i class="fa fa-mobile"> </i>
Access on Web & Mobile
</p>
<p>
<i class="fa fa-paperclip"> </i>
Assignments
</p>
<p>
<i class="fa fa-certificate"> </i>
Certificate on completion.
</p>
<div class="enroll-btn" id="fav-click">
<a
class="blue"
id="fav-click"
onclick="myfunction();addToFavourite('phy')"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details3_2">
<section id="home">
<h2>Yoga Course</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source
src="img/HTML Tutorial for Beginners 01 - HTML Introduction.mp4"
type="video/mp4"
/>
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<!-- <img class="course-image" src="img/c1.jfif" alt="" /> -->
<div class="course-head">
<div class="c-name">
<h2>Diploma in Yoga Training</h2>
<div class="star">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<p>
Start a New Career in Yoga with this Yoga Course for
Beginners/Intermediates
</p>
</div>
<span>$45.99</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Yoga Instructor</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
this course comply with universally accepted principles of Continual
Professional Development (CPD) and have been structured to meet the
criteria of personal development plans
<br /><br />
Yoga, when practised regularly, have the potential to help you
become more mindful so that your life in the present, most of the
time, which leads to increased happiness and optimal health and
thereby reducing anxiety and stress.
<br /><br />
Yoga tones your nervous system, helps you sleep deeper, helps
detoxify toxins through deep breathing, helps with digestive issues
and so forth.
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Master all 59 Asana which are excellent for beginners and
intermediates
</p>
<p>
<i class="fa fa-check-circle"> </i>
Have an excellent understanding of the principles of Patanjali's
Ashtanga Eight Limb Yoga
</p>
<p>
<i class="fa fa-check-circle"> </i>
Improve alignment and posture to reduce the risk of injury
</p>
<p>
<i class="fa fa-check-circle"> </i>
More flexibillity and helps in relaxing and good lifestyle
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
62 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
44 article
</p>
<p>
<i class="fa fa-cloud-download"> </i>
Downloadable Resources
</p>
<p>
<i class="fa fa-calendar"> </i>
Full lifetime access
</p>
<p>
<i class="fa fa-mobile"> </i>
Access on Web & Mobile
</p>
<p>
<i class="fa fa-paperclip"> </i>
Assignments
</p>
<p>
<i class="fa fa-certificate"> </i>
Certificate on completion.
</p>
<div class="enroll-btn">
<a
class="blue"
id="fav-click"
onclick="myfunction();addToFavourite('fit')"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details3_3">
<section id="home">
<h2>Life Coaching Course</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source
src="img/HTML Tutorial for Beginners 01 - HTML Introduction.mp4"
type="video/mp4"
/>
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<!-- <img class="course-image" src="img/c1.jfif" alt="" /> -->
<div class="course-head">
<div class="c-name">
<h2>
Life Coaching Certificate Course (Beginner to Intermediate)
</h2>
<div class="star">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<p>
A comprehensive online training that delivers in-depth
understanding of the key elements of the Life Coaching
profession
</p>
</div>
<span>$59.99</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Life Coach</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
This unparalleled Life Coaching Certificate Course includes an
easy-to-understand curriculum designed to support the development of
effective communication skills
<br /><br />
behaviors, attitudes, careers, and daily interactions.. <br /><br />
wise perspectives, and the ways in which transformational changes
can be made to people's beliefs
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
A time-proven life coaching methodology that’s been practiced on
2000+ people.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Develop an enhanced sense of social awareness and improve your
people skills.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Lead people into heightened states of innovation, creativity and
personal effectiveness.
</p>
<p>
<i class="fa fa-check-circle"> </i>
The art of making difficult decisions (or how to help others make
difficult decisions).
</p>
<p>
<i class="fa fa-check-circle"> </i>
Communication that establishes a sense of confidence, trust and
rapport with others.
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
69 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
61 article
</p>
<p>
<i class="fa fa-cloud-download"> </i>
Downloadable Resources
</p>
<p>
<i class="fa fa-calendar"> </i>
Full lifetime access
</p>
<p>
<i class="fa fa-mobile"> </i>
Access on Web & Mobile
</p>
<p>
<i class="fa fa-paperclip"> </i>
Assignments
</p>
<p>
<i class="fa fa-certificate"> </i>
Certificate on completion.
</p>
<div class="enroll-btn">
<a
class="blue"
id="fav-click"
onclick="myfunction();addToFavourite('life')"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details3_4">
<section id="home">
<h2>Sports Management: The Essentials Course</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source
src="img/HTML Tutorial for Beginners 01 - HTML Introduction.mp4"
type="video/mp4"
/>
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<!-- <img class="course-image" src="img/c1.jfif" alt="" /> -->
<div class="course-head">
<div class="c-name">
<h2>
A Comprehensive Overview at How the Sports Industry Operates and
the Challenges Facing the Modern Sports Industry Today
</h2>
<div class="star">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<p>
Perfect for Sports management is the principle of organising and
running sports and sports activities.
</p>
</div>
<span>$39.99</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Team Manager</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
Sports have always been an important part of human society, and the
sporting industry has grown to have a major economic impact on the
world too.
<br /><br />
Throughout history, humans have used sports to have fun, demonstrate
their skills and engage in competition
<br /><br />
Sports allow us to engage our innate need to compete against others
while also promoting a healthy and active lifestyle
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
What sports management is
</p>
<p>
<i class="fa fa-check-circle"> </i>
What are sports and how did they develop?
</p>
<p>
<i class="fa fa-check-circle"> </i>
what is ethnography and how does it apply to sports?
</p>
<p>
<i class="fa fa-check-circle"> </i>
The values of sports and sport culture
</p>
<p>
<i class="fa fa-check-circle"> </i>
How sports and psychology are linked
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
46 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
21 article
</p>
<p>
<i class="fa fa-cloud-download"> </i>
Downloadable Resources
</p>
<p>
<i class="fa fa-calendar"> </i>
Full lifetime access
</p>
<p>
<i class="fa fa-mobile"> </i>
Access on Web & Mobile
</p>
<p>
<i class="fa fa-paperclip"> </i>
Assignments
</p>
<p>
<i class="fa fa-certificate"> </i>
Certificate on completion.
</p>
<div class="enroll-btn">
<a
class="blue"
id="fav-click"
onclick="myfunction();addToFavourite('sport')"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details3_5">
<section id="home">
<h2>Meditation Practitioner / Teacher Certification</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source
src="img/HTML Tutorial for Beginners 01 - HTML Introduction.mp4"
type="video/mp4"
/>
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<!-- <img class="course-image" src="img/c1.jfif" alt="" /> -->
<div class="course-head">
<div class="c-name">
<h2>Welcome to this thorough course on Medetation</h2>
<div class="star">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<p>
A fully Accredited Meditation Practitioner / Teacher
Certification course taking you from beginner to professional
level
</p>
</div>
<span>$34.99</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Proffesional Medetator</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
This Meditation Practitioner / Teacher Certification course is a
fully comprehensive guide into the world of the Meditation
Practitioner
<br /><br />
Meditation Teacher in which you will be taken from beginner to
professional level where you will be able to run your own meditation
classes. <br /><br />
Whether you want to guide individuals or groups through the
mediation process, you have found the right course as you will learn
how to do both
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Do you want to become an Accredited Meditation Practitioner /
Teacher?
</p>
<p>
<i class="fa fa-check-circle"> </i>
There is a fully downloadable audio version of this meditation
course so you can learn on the go
</p>
<p>
<i class="fa fa-check-circle"> </i>
Understand the benefits of meditation and how to apply them to
yourself and your clients
</p>
<p>
<i class="fa fa-check-circle"> </i>
Would you like to discover how to lead both individual and group
meditation sessions
</p>
<p>
<i class="fa fa-check-circle"> </i>
PLUS: Get 10 Meditation background audio files so you can create
your own meditation program
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
62 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
24 article
</p>
<p>
<i class="fa fa-cloud-download"> </i>
Downloadable Resources
</p>
<p>
<i class="fa fa-calendar"> </i>
Full lifetime access
</p>
<p>
<i class="fa fa-mobile"> </i>
Access on Web & Mobile
</p>
<p>
<i class="fa fa-paperclip"> </i>
Assignments
</p>
<p>
<i class="fa fa-certificate"> </i>
Certificate on completion.
</p>
<div class="enroll-btn">
<a
class="blue"
id="fav-click"
onclick="myfunction();addToFavourite('med')"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details3_6">
<section id="home">
<h2>Introduction to Football (Soccer) Tactics</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source
src="img/HTML Tutorial for Beginners 01 - HTML Introduction.mp4"
type="video/mp4"
/>
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<!-- <img class="course-image" src="img/c1.jfif" alt="" /> -->
<div class="course-head">
<div class="c-name">
<h2>Course for football tactics</h2>
<div class="star">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
<p>
Gain a deeper understanding of the world of football with this
guide to the basic principles of football tactics.
</p>
</div>
<span>$29.99</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Football Coach</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
It is one thing to admire and enjoy a beautiful piece of work, but
it is another thing altogether to understand the finer intricacies
of what makes that thing beautiful
<br /><br />
If you enjoy the game of football, but want to truly understand it
on a deeper level, then this is the course for you.
<br /><br />
Through a mixture of theoretical tactics board lessons and practical
analysis of clips from real football matches, this course will give
you an introduction to the world of tactics.
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Identify common tactics in football matches
</p>
<p>
<i class="fa fa-check-circle"> </i>
Understand the inherent advantages and disadvantages of certain
systems
</p>
<p>
<i class="fa fa-check-circle"> </i>
Increase your Speed as well as Accuracy.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Effectively critique team performances from a tactical standpoint
</p>
<p>
<i class="fa fa-check-circle"> </i>
Fundamentals of Football.
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
37 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
15 article
</p>
<p>
<i class="fa fa-cloud-download"> </i>
Downloadable Resources
</p>
<p>
<i class="fa fa-calendar"> </i>
Full lifetime access
</p>
<p>
<i class="fa fa-mobile"> </i>
Access on Web & Mobile
</p>
<p>
<i class="fa fa-paperclip"> </i>
Assignments
</p>
<p>
<i class="fa fa-certificate"> </i>
Certificate on completion.
</p>
<div class="enroll-btn" id="fav-click">
<a
class="blue"
id="fav-click"
onclick="myfunction();addToFavourite('foot')"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<!-- footer -->
<footer class="text-center main-footer footer_copy">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<aside class="footer-widget">
<h3 class="h3">Site Map</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#cat">Categories</a></li>
<li><a href="aboutUs.html">About us</a></li>
<li><a href="index.html#support">Support</a></li>
</ul>
</aside>
</div>
<div class="footer-col col-md-4">
<h3 class="h3">About Foresight</h3>
<p class="par">
<b
>We help students of all degrees and regions prepare for the
path ahead - wherever it leads.</b
>
</p>
</div>
<div class="footer-col col-md-4">
<h3 class="h3">Around the Web</h3>
<ul class="list-inline">
<li class="list-inline-item">
<a
href="https://www.facebook.com"
class="btn-social btn-outline"
target="_blank"
><i class="fa fa-facebook"></i
></a>
</li>
<li class="list-inline-item">
<a
href="https://www.youtube.com"
class="btn-social btn-outline"
target="_blank"
><i class="fa fa-fw fa-youtube"></i
></a>
</li>
<li class="list-inline-item">
<a
href="https://www.twitter.com"
class="btn-social btn-outline"
target="_blank"
><i class="fa fa-fw fa-twitter"></i
></a>
</li>
<li class="list-inline-item">
<a
href="https://www.linkedin.com"
class="btn-social btn-outline"
target="_blank"
><i class="fa fa-fw fa-linkedin"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
<b>Copyright © 2021. All Rights Reserved For BAU</b><br />
<sub>Haitham Abdallah Ammar</sub>
</div>
</div>
</div>
</div>
</footer>
<!-- footer -->
<script>
function addToFavourite(id) {
var url_string = window.location.href; // window.location.href
var url = new URL(url_string);
//var id = url.searchParams.get("details_id");
window.localStorage.setItem(id, "true");
}
</script>
<script>
var url_string = window.location.href; //window.location.href
var url = new URL(url_string);
var id = url.searchParams.get("details3_id");
if (id == 1) {
document.getElementById("details3_1").style.display = "block";
document.getElementById("details3_2").style.display = "none";
document.getElementById("details3_3").style.display = "none";
document.getElementById("details3_4").style.display = "none";
document.getElementById("details3_5").style.display = "none";
document.getElementById("details3_6").style.display = "none";
} else if (id == 2) {
document.getElementById("details3_1").style.display = "none";
document.getElementById("details3_2").style.display = "block";
document.getElementById("details3_3").style.display = "none";
document.getElementById("details3_4").style.display = "none";
document.getElementById("details3_5").style.display = "none";
document.getElementById("details3_6").style.display = "none";