-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
1080 lines (1032 loc) · 37 KB
/
details.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"
/>
<script>
function Show() {
var x = document.getElementById("Div1");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
<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>
<script src="js/show.js"></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="details_1">
<section id="home">
<h2>Modern HTML From The Beginning</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>HTML for beginners</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>
HTML from the beginning-all the way up to an expert level!! ,
Best HTML course in 2021
</p>
</div>
<span>Free</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Web Developer at Foresight</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
HyperText Markup Language, commonly abbreviated as HTML, is the
standard markup language used to create web pages.
<br /><br />
Fast paced get to the point training, to learn about creating
websites and using HTML code. <br /><br />
By the end of the course you will have the skills and know how to
apply HTML to make a real website.
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Describe introduction to HTML5 and what basic web design is.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Identify how to create a simple web page.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Identify how to format your text.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Identify adding web links and images
</p>
<p>
<i class="fa fa-check-circle"> </i>
Demonstrate creating tables.
</p>
</div>
</div>
<div class="enroll">
<h3>Course Details</h3>
<p>
<i class="fa fa-video-camera"></i>
50 hours video
</p>
<p>
<i class="fa fa-file-text-o"> </i>
57 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('html');"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details_2">
<section id="home">
<h2>Advanced CSS: Flexbox, Grid and More!</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>
Advanced CSS and Sass: Flexbox, Grid, Animations and More!
</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>
The most advanced and modern CSS course on the internet: master
flexbox, CSS Grid, responsive design, and so much more.
</p>
</div>
<span>Free</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Web Developer at Foresight</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
Tons of modern CSS techniques to create stunning designs and
effects, how CSS works behind the scenes.
<br /><br />
Advanced CSS animations with @keyframes, animation and transition,
CSS architecture: component-based design, BEM, writing reusable
code, etc.<br /><br />
Advanced responsive design: media queries, mobile-first vs
desktop-first, em vs rem units, etc.
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Using Sass in real-world projects: global variables, architecting
CSS, etc.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Responsive images in CSS for faster pageloads.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Identify how to format your text.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Advanced responsive design: media queries, mobile-first vs
desktop-first, etc.
</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('css');"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details_3">
<section id="home">
<h2>The Complete JavaScript Course: From Zero to Expert!</h2>
</section>
<section id="inner-course">
<div class="overview">
<video style="width: 100%" controls>
<source
src="https://firebasestorage.googleapis.com/v0/b/foresight-fea14.appspot.com/o/elzero.mp4?alt=media&token=d4eaab42-9554-4e0a-8af3-32f28ea3b0a9"
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>The Complete JavaScript Course 2022: From Zero to Expert!</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>
JavaScript from the beginning-all the way up to an expert
level!! , Best JavaScript course in 2022
</p>
</div>
<span>Free</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Web Developer at Foresight</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
JavaScript fundamentals: variables, if/else, operators, boolean
logic, functions, arrays, objects, loops, strings, etc.
<br /><br />
How to think and work like a developer: problem-solving,
researching, workflows. <br /><br />
Become an advanced, confident, and modern JavaScript developer from
scratch
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Modern OOP: Classes, constructors, prototypal inheritance,
encapsulation, etc.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Asynchronous JavaScript: Event loop, promises, async/await, AJAX
calls and APIs
</p>
<p>
<i class="fa fa-check-circle"> </i>
Modern tools for 2021 and beyond: NPM, Parcel, Babel and ES6
modules
</p>
<p>
<i class="fa fa-check-circle"> </i>
How to architect your code using flowcharts and common patterns
</p>
<p>
<i class="fa fa-check-circle"> </i>
Complex concepts like the 'this' keyword, higher-order functions,
closures, etc.
</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('js');"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details_4">
<section id="home">
<h2>iPhone Apps with Swift, SwiftUI & iOS 15</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>
iPhone Apps with Swift, SwiftUI & iOS 15 - Noob to App Store
</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 Course for Complete Beginners - Create Apps and Submit
Them to the App Store Using SwiftUI 3 Code and Xcode 13
</p>
</div>
<span>Free</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Web Developer at Foresight</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
Swift The Programming Langauge, Submitting Apps to the App Store,
<br /><br />
Bind Variables with TextFields, Working with APIs and JSON Data.
<br /><br />
CoreData - Apple's Mobile Database, Create Multi-View Apps with
NavigationViews.
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
SwiftUI - Apple's New Design Framework.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Xcode - Apple's Tool to Make Apps.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Create Multi-View Apps with NavigationViews.
</p>
<p>
<i class="fa fa-check-circle"> </i>
The 3 Stacks: HStack, VStack, and ZStack.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Use Complex Views Like TabView and GridView.
</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('swift');"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details_5">
<section id="home">
<h2>The Complete Android 12 & Kotlin Development Masterclass</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>The Complete Android 12 & Kotlin Development</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>
Learn Android 12 App Development From Beginner to Advanced
Developer. Build Apps like Trello, 7Min Workout, Weather App
</p>
</div>
<span>Free</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Web Developer at Foresight</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
You can build any Android app you can think of. No matter if it is
an idea that you or your friends have, or if it is a contract job
that you need to develop
<br /><br />
Publish your apps on Google Play and generate revenue with Google
Pay and Google Ads <br /><br />
You'll be able to work as an Android freelancer and work from
anywere in the world
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
You will be very confident using Kotlin and programming in
general.
</p>
<p>
<i class="fa fa-check-circle"> </i>
You'll be able to develop cloud apps using Google Firebase.
</p>
<p>
<i class="fa fa-check-circle"> </i>
You will build Apps for your portfolio to apply for jr. Android
developer Jobs..
</p>
<p>
<i class="fa fa-check-circle"> </i>
Publish your apps on Google Play and generate revenue with Google
Pay and Google Ads.
</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('android');"
>
<i class="fa fa-heart"></i
></a>
</div>
</div>
</section>
</section>
<section id="details_6">
<section id="home">
<h2>C Programming Language: The Ultimate Guide for Beginners</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>C Programming Language: The Ultimate Guide for Beginners</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>
C programming course for beginners to help you write complex C
programs & land in a high paying IT job
</p>
</div>
<span>Free</span>
</div>
<h3>Instructor</h3>
<div class="tutor">
<img src="img/user.png" alt="" />
<div class="tutor-details">
<h5>Ammar</h5>
<p>Web Developer at Foresight</p>
</div>
</div>
<hr />
<h3>Course overview</h3>
<p>
Make yourself more marketable for entry level programming positions,
C Programming Language Concepts & Usage
<br /><br />
Understand the core language that most modern languages are based on
<br /><br />
Understand the fundamentals of the C Programming Language, C
Programming Structure
</p>
<hr />
<h3>What you'll Learn</h3>
<div class="learn">
<p>
<i class="fa fa-check-circle"> </i>
Apply for real-time programming positions.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Learn how to write high-quality code.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Create your first C Application.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Usage of Variables - declaration | initialization | access.
</p>
<p>
<i class="fa fa-check-circle"> </i>
Fundamentals of Programming.
</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">
<a
class="blue"
id="fav-click"
onclick="$(myfunction());addToFavourite('c');"
>
<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("details_id");
if (id == 1) {
document.getElementById("details_1").style.display = "block";
document.getElementById("details_2").style.display = "none";
document.getElementById("details_3").style.display = "none";
document.getElementById("details_4").style.display = "none";
document.getElementById("details_5").style.display = "none";
document.getElementById("details_6").style.display = "none";
} else if (id == 2) {
document.getElementById("details_1").style.display = "none";
document.getElementById("details_2").style.display = "block";
document.getElementById("details_3").style.display = "none";
document.getElementById("details_4").style.display = "none";
document.getElementById("details_5").style.display = "none";
document.getElementById("details_6").style.display = "none";
} else if (id == 3) {
document.getElementById("details_1").style.display = "none";
document.getElementById("details_2").style.display = "none";
document.getElementById("details_3").style.display = "block";
document.getElementById("details_4").style.display = "none";
document.getElementById("details_5").style.display = "none";
document.getElementById("details_6").style.display = "none";
} else if (id == 4) {
document.getElementById("details_1").style.display = "none";
document.getElementById("details_2").style.display = "none";
document.getElementById("details_3").style.display = "none";
document.getElementById("details_4").style.display = "block";
document.getElementById("details_5").style.display = "none";
document.getElementById("details_6").style.display = "none";
} else if (id == 5) {
document.getElementById("details_1").style.display = "none";