-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse-intro2.html
More file actions
1511 lines (1293 loc) · 86.7 KB
/
course-intro2.html
File metadata and controls
1511 lines (1293 loc) · 86.7 KB
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" dir="rtl">
<!-- Mirrored from demo.foxthemes.net/courseplusv3.3/horizontal-rtl/course-intro.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 14 Nov 2020 18:08:29 GMT -->
<head>
<!-- Basic Page Needs
================================================== -->
<title>Technocolabs.ai</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Courseplus - Professional Learning Management HTML Template">
<!-- Favicon -->
<link href="assets/images/favicon.png" rel="icon" type="image/png">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/css-style-rtl.css">
<link rel="stylesheet" href="css/css-night-mode.css">
<link rel="stylesheet" href="css/css-framework-rtl.css">
<link rel="stylesheet" href="css/css-bootstrap.css">
<!-- icons
================================================== -->
<link rel="stylesheet" href="css/css-icons.css">
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header Container
================================================== -->
<header class="header header-horizontal">
<div class="container">
<nav uk-navbar>
<!-- left Side Content -->
<div class="uk-navbar-left">
<!-- menu icon -->
<span class="mmenu-trigger">
<button class="hamburger hamburger--collapse" type="button">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
</span>
<!-- logo -->
<a href="dashboard.html" class="logo">
<img src="http://demo.foxthemes.net/courseplusv3.3/assets/images/logo-dark.svg" alt="">
<span> Technocolabs.ai</span>
</a>
<!-- Main Navigation -->
<nav id="navigation">
<ul id="responsive">
<li><a href="dashboard.html">Home</a> </li>
<li><a href="course.html">Explore</a>
<ul class="dropdown-nav nav-large nav-courses">
<li><a href="course-card.html#">
<i class="icon-brand-js-square" style="color: #f7df1e;"></i> JavaScript
</a>
</li>
<li><a href="course-card.html">
<i class="icon-brand-node-js" style="color: green;"></i> NodeJS </a>
</li>
<li><a href="course-card.html">
<i class="icon-brand-angular" style="color:#dd0031"></i> Angular </a>
</li>
<li><a href="course-card.html">
<i class="icon-brand-css3-alt" style="color: blue;"></i> CSS </a></li>
<li><a href="course-card.html">
<i class="icon-brand-html5" style=" color:#f0653f"></i> HTML5 </a></li>
<li><a href="course-card.html">
<i class="icon-brand-react" style=" color:#67fcef"></i> React </a></li>
<li><a href="course-card.html">
<i class="icon-brand-vuejs" style="color: green;"></i> Vue JS </a></li>
<li><a href="course-card.html">
<i class="icon-brand-python" style="color: #b1b172;"></i> Python </a>
</li>
</ul>
</li>
<li><a href="course-path.html" class="nav-active">Track</a> </li>
<li><a href="book.html">Book</a> </li>
<li><a href="blog-1.html">Blog</a> </li>
<li><a href="#">Pages</a>
<ul class="dropdown-nav">
<li><a href="page-pricing.html">Pricing</a> </li>
<li><a href="page-Privacy.html">Privacy</a></li>
<li><a href="page-term.html">Terms</a></li>
<li><a href="page-contact.html">Contact</a></li>
<li><a href="#">Account</a>
<ul class="dropdown-nav">
<li><a href="page-login.html">login</a></li>
<li><a href="page-register.html">register</a></li>
<li><a href="page-simple-login.html">Simple login</a></li>
<li><a href="page-simple-register.html">Simple register</a></li>
</ul>
</li>
<li><a href="#">Development</a>
<ul class="dropdown-nav">
<li><a href="page-elements.html">Elements</a></li>
<li><a href="page-components.html">Components</a></li>
<li><a href="page-icons.html">Icons</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
<!-- Main Navigation / End -->
</div>
<!-- Right Side Content -->
<div class="uk-navbar-right">
<div class="header-widget">
<div class="searchbox uk-visible@s">
<input class="uk-search-input" type="search" placeholder="Search...">
<button class="btn-searchbox"> </button>
</div>
<!-- Search box dropdown -->
<div uk-dropdown="pos: top;mode:click;animation: uk-animation-slide-bottom-small"
class="dropdown-search">
<div class="erh BR9 MIw"
style="top: -27px;position: absolute ; left: 24px;fill: currentColor;height: 24px;pointer-events: none;color: #f5f5f5;">
<svg width="22" height="22">
<path d="M0 24 L12 12 L24 24"></path>
</svg></div>
<!-- User menu -->
<ul class="dropdown-search-list">
<li class="list-title">
Recent Searches
</li>
<li>
<a href="course-intro.html">
Ultimate Web Designer And Developer Course</a>
</li>
<li><a href="course-intro.html">
The Complete Ruby on Rails Developer Course </a>
</li>
<li><a href="course-intro.html">
Bootstrap 4 From Scratch With 5 Real Projects </a>
</li>
<li> <a href="course-intro.html">
The Complete 2020 Web Development Bootcamp </a>
</li>
<li class="menu-divider">
<li><a href="course-intro.html">
Bootstrap 4 From Scratch With 5 Real Projects </a>
</li>
<li> <a href="course-intro.html">
The Complete 2020 Web Development Bootcamp </a>
</li>
</ul>
</div>
<!-- User icons close mobile-->
<span class="icon-feather-x icon-small uk-hidden@s"
uk-toggle="target: .header-widget ; cls: is-active"> </span>
<a href="#" class="header-widget-icon"
uk-tooltip="title: My Courses ; pos: bottom ;offset:21">
<i class="uil-youtube-alt"></i>
</a>
<!-- courses dropdown List -->
<div uk-dropdown="pos: top;mode:click;animation: uk-animation-slide-bottom-small"
class="dropdown-notifications my-courses-dropdown">
<!-- notivication header -->
<div class="dropdown-notifications-headline">
<h4>Your Courses</h4>
<a href="#">
<i class="icon-feather-settings"
uk-tooltip="title: Notifications settings ; pos: left"></i>
</a>
</div>
<!-- notification contents -->
<div class="dropdown-notifications-content" data-simplebar>
<!-- notiviation list -->
<ul>
<li class="notifications-not-read">
<a href="course-intro.html">
<span class="notification-image">
<img src="../assets/images/course/1.png" alt=""> </span>
<span class="notification-text">
<span class="course-title">Ultimate Web Designer & Web Developer
</span>
<span class="course-number">6/35 </span>
<span class="course-progressbar">
<span class="course-progressbar-filler"
style="width:95%"></span>
</span>
</span>
<!-- option menu -->
<span class="btn-option">
<i class="icon-feather-more-vertical"></i>
</span>
<div class="dropdown-option-nav"
uk-dropdown="pos: bottom-right ;mode : hover">
<ul>
<li>
<span>
<i class="icon-material-outline-dashboard"></i>
Course Dashboard</span>
</li>
<li>
<span>
<i class="icon-feather-video"></i>
Resume Course</span>
</li>
<li>
<span>
<i class="icon-feather-x"></i>
Remove Course</span>
</li>
</ul>
</div>
</a>
</li>
<li>
<a href="course-intro.html">
<span class="notification-image">
<img src="../assets/images/course/3.png" alt=""> </span>
<span class="notification-text">
<span class="course-title">The Complete JavaScript Course Build Real
Projects !</span>
<span class="course-number">6/35 </span>
<span class="course-progressbar">
<span class="course-progressbar-filler"
style="width:95%"></span>
</span>
</span>
<!-- option menu -->
<span class="btn-option">
<i class="icon-feather-more-vertical"></i>
</span>
<div class="dropdown-option-nav"
uk-dropdown="pos: bottom-right ;mode : hover">
<ul>
<li>
<span>
<i class="icon-material-outline-dashboard"></i>
Course Dashboard</span>
</li>
<li>
<span>
<i class="icon-feather-video"></i>
Resume Course</span>
</li>
<li>
<span>
<i class="icon-feather-x"></i>
Remove Course</span>
</li>
</ul>
</div>
</a>
</li>
<li>
<a href="course-intro.html">
<span class="notification-image">
<img src="../assets/images/course/2.png" alt=""> </span>
<span class="notification-text">
<span class="course-title">Learn Angular Fundamentals From The
Beginning</span>
<span class="course-number">6/35 </span>
<span class="course-progressbar">
<span class="course-progressbar-filler"
style="width:95%"></span>
</span>
</span>
<!-- option menu -->
<span class="btn-option">
<i class="icon-feather-more-vertical"></i>
</span>
<div class="dropdown-option-nav"
uk-dropdown="pos: bottom-right ;mode : hover">
<ul>
<li>
<span>
<i class="icon-material-outline-dashboard"></i>
Course Dashboard</span>
</li>
<li>
<span>
<i class="icon-feather-video"></i>
Resume Course</span>
</li>
<li>
<span>
<i class="icon-feather-x"></i>
Remove Course</span>
</li>
</ul>
</div>
</a>
</li>
<li>
<a href="course-intro.html">
<span class="notification-image">
<img src="assets/images/course/1.png" alt=""> </span>
<span class="notification-text">
<span class="course-title">Ultimate Web Designer & Web Developer
</span>
<span class="course-number">6/35 </span>
<span class="course-progressbar">
<span class="course-progressbar-filler"
style="width:95%"></span>
</span>
</span>
<!-- option menu -->
<span class="btn-option">
<i class="icon-feather-more-vertical"></i>
</span>
<div class="dropdown-option-nav"
uk-dropdown="pos: top-right ;mode : hover">
<ul>
<li>
<span>
<i class="icon-material-outline-dashboard"></i>
Course Dashboard</span>
</li>
<li>
<span>
<i class="icon-feather-video"></i>
Resume Course</span>
</li>
<li>
<span>
<i class="icon-feather-x"></i>
Remove Course</span>
</li>
</ul>
</div>
</a>
</li>
</ul>
</div>
<div class="dropdown-notifications-footer">
<a href="#"> sell all</a>
</div>
</div>
<!-- notificiation icon -->
<a href="#" class="header-widget-icon"
uk-tooltip="title: Notificiation ; pos: bottom ;offset:21">
<i class="uil-bell"></i>
<span>4</span>
</a>
<!-- notificiation dropdown -->
<div uk-dropdown="pos: top-right;mode:click ; animation: uk-animation-slide-bottom-small"
class="dropdown-notifications">
<!-- notivication header -->
<div class="dropdown-notifications-headline">
<h4>Notifications </h4>
<a href="#">
<i class="icon-feather-settings"
uk-tooltip="title: Notifications settings ; pos: left"></i>
</a>
</div>
<!-- notification contents -->
<div class="dropdown-notifications-content" data-simplebar>
<!-- notiviation list -->
<ul>
<li class="notifications-not-read">
<a href="#">
<span class="notification-icon btn btn-soft-danger disabled">
<i class="icon-feather-thumbs-up"></i></span>
<span class="notification-text">
<strong>Adrian Mohani</strong> Like Your Comment On Course
<span class="text-primary">Javascript Introduction </span>
<br> <span class="time-ago"> 9 hours ago </span>
</span>
</a>
</li>
<li>
<a href="#">
<span class="notification-icon btn btn-soft-primary disabled">
<i class="icon-feather-message-circle"></i></span>
<span class="notification-text">
<strong>Stella Johnson</strong> Replay Your Comments in
<span class="text-primary">Programming for Games</span>
<br> <span class="time-ago"> 12 hours ago </span>
</span>
</a>
</li>
<li>
<a href="#">
<span class="notification-icon btn btn-soft-success disabled">
<i class="icon-feather-star"></i></span>
<span class="notification-text">
<strong>Alex Dolgove</strong> Added New Review In Course
<span class="text-primary">Full Stack PHP Developer</span>
<br> <span class="time-ago"> 19 hours ago </span>
</span>
</a>
</li>
<li class="notifications-not-read">
<a href="#">
<span class="notification-icon btn btn-soft-danger disabled">
<i class="icon-feather-share-2"></i></span>
<span class="notification-text">
<strong>Jonathan Madano</strong> Shared Your Discussion On Course
<span class="text-primary">Css Flex Box </span>
<br> <span class="time-ago"> Yesterday </span>
</span>
</a>
</li>
</ul>
</div>
</div>
<!-- Message -->
<a href="#" class="header-widget-icon" uk-tooltip="title: Message ; pos: bottom ;offset:21">
<i class="uil-envelope-alt"></i>
<span>1</span>
</a>
<!-- Message notificiation dropdown -->
<div uk-dropdown=" pos: top-right;mode:click" class="dropdown-notifications">
<!-- notivication header -->
<div class="dropdown-notifications-headline">
<h4>Messages</h4>
<a href="#">
<i class="icon-feather-settings"
uk-tooltip="title: Message settings ; pos: left"></i>
</a>
</div>
<!-- notification contents -->
<div class="dropdown-notifications-content" data-simplebar>
<!-- notiviation list -->
<ul>
<li class="notifications-not-read">
<a href="#">
<span class="notification-avatar">
<img src="assets/images/avatars/avatar-2.jpg" alt="">
</span>
<div class="notification-text notification-msg-text">
<strong>Jonathan Madano</strong>
<p>Okay.. Thanks for The Answer I will be waiting for your...
</p>
<span class="time-ago"> 2 hours ago </span>
</div>
</a>
</li>
<li>
<a href="#">
<span class="notification-avatar">
<img src="assets/images/avatars/avatar-3.jpg" alt="">
</span>
<div class="notification-text notification-msg-text">
<strong>Stella Johnson</strong>
<p> Alex will explain you how to keep the HTML structure and all
that...</p>
<span class="time-ago"> 7 hours ago </span>
</div>
</a>
</li>
<li>
<a href="#">
<span class="notification-avatar">
<img src="assets/images/avatars/avatar-1.jpg" alt="">
</span>
<div class="notification-text notification-msg-text">
<strong>Alex Dolgove</strong>
<p> Alia Joseph just joined Messenger! Be the first to send a
welcome message..</p>
<span class="time-ago"> 19 hours ago </span>
</div>
</a>
</li>
<li>
<a href="#">
<span class="notification-avatar">
<img src="assets/images/avatars/avatar-4.jpg" alt="">
</span>
<div class="notification-text notification-msg-text">
<strong>Adrian Mohani</strong>
<p> Okay.. Thanks for The Answer I will be waiting for your...
</p>
<span class="time-ago"> Yesterday </span>
</div>
</a>
</li>
</ul>
</div>
<div class="dropdown-notifications-footer">
<a href="#"> sell all <i class="icon-line-awesome-long-arrow-right"></i> </a>
</div>
</div>
<!-- profile-icon-->
<a href="#" class="header-widget-icon profile-icon">
<img src="assets/images/avatars/avatar-2.jpg" alt="" class="header-profile-icon">
</a>
<div uk-dropdown="pos: top-right ;mode:click" class="dropdown-notifications small">
<!-- User Name / Avatar -->
<a href="profile-1.html">
<div class="dropdown-user-details">
<div class="dropdown-user-avatar">
<img src="assets/images/avatars/avatar-2.jpg" alt="">
</div>
<div class="dropdown-user-name">
Richard Ali <span>Students</span>
</div>
</div>
</a>
<!-- User menu -->
<ul class="dropdown-user-menu">
<li>
<a href="#">
<i class="icon-material-outline-dashboard"></i> Dashboard</a>
</li>
<li><a href="#">
<i class="icon-feather-bookmark"></i> Bookmark </a>
</li>
<li><a href="profile-edit.html">
<i class="icon-feather-settings"></i> Account Settings</a>
</li>
<li><a href="#" style="color:#62d76b">
<i class="icon-feather-star"></i> Upgrade To Premium</a>
</li>
<li>
<a href="#" id="night-mode" class="btn-night-mode">
<i class="icon-feather-moon"></i> Night mode
<span class="btn-night-mode-switch">
<span class="uk-switch-button"></span>
</span>
</a>
</li>
<li class="menu-divider">
<li><a href="#">
<i class="icon-feather-help-circle"></i> Help</a>
</li>
<li><a href="page-login.html">
<i class="icon-feather-log-out"></i> Sing Out</a>
</li>
</ul>
</div>
</div>
<!-- icon search-->
<a class="uk-navbar-toggle uk-hidden@s"
uk-toggle="target: .nav-overlay; animation: uk-animation-fade" href="#">
<i class="uil-search icon-small"></i>
</a>
<!-- User icons -->
<a href="#" class="uil-user icon-small uk-hidden@s"
uk-toggle="target: .header-widget ; cls: is-active">
</a>
</div>
<!-- End Right Side Content / End -->
</nav>
</div>
<!-- container / End -->
</header>
<!-- overlay seach on mobile-->
<div class="nav-overlay uk-navbar-left uk-position-relative uk-flex-1 bg-grey uk-light p-2" hidden
style="z-index: 10000;">
<div class="uk-navbar-item uk-width-expand" style="min-height: 60px;">
<form class="uk-search uk-search-navbar uk-width-1-1">
<input class="uk-search-input" type="search" placeholder="Search..." autofocus>
</form>
</div>
<a class="uk-navbar-toggle" uk-close uk-toggle="target: .nav-overlay; animation: uk-animation-fade"
href="#"></a>
</div>
<!-- Content
================================================== -->
<div class="page-content">
<div class="course-details-wrapper topic-1 uk-light">
<div class="container p-sm-0">
<div uk-grid>
<div class="uk-width-2-3@m">
<div class="course-details">
<h1> Learn Html From Scratch</h1>
<p> Master Html with the most complete course! Projects
Excellent
course. we
explain the core concepts in html that are usually glossed over in other
courses </p>
<div class="course-details-info mt-4">
<ul>
<li>
<div class="star-rating"><span class="avg"> 4.9 </span> <span
class="star"></span><span class="star"></span><span
class="star"></span><span class="star"></span><span class="star"></span>
</div>
</li>
<li> <i class="icon-feather-users"></i> 1200 Enerolled </li>
</ul>
</div>
<div class="course-details-info">
<ul>
<li> Created by <a href="#"> Jonathan Madano </a> </li>
<li> Last updated 10/2019</li>
</ul>
</div>
</div>
<nav class="responsive-tab style-5">
<ul
uk-switcher="connect: #course-intro-tab ;animation: uk-animation-slide-right-medium, uk-animation-slide-left-medium">
<li><a href="#">Curriculum</a></li>
<li><a href="#">Overview</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Announcement</a></li>
<li><a href="#">Reviews</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div class="container">
<div class="uk-grid-large mt-4" uk-grid>
<div class="uk-width-2-3@m">
<ul id="course-intro-tab" class="uk-switcher mt-4">
<!-- course Curriculum-->
<li>
<ul class="course-curriculum" uk-accordion="multiple: true">
<li class="uk-open">
<a class="uk-accordion-title" href="#"> Html Introduction </a>
<div class="uk-accordion-content">
<!-- course-video-list -->
<ul class="course-curriculum-list">
<li> What is HTML <span> 23 min </span>
<li> What is a Web page? <span> 23 min </span> </li>
<li> Your First Web Page <a href="#trailer-modal" uk-toggle> Preview
</a> <span> 23 min </span>
</li>
<li> Brain Streak <span> 23 min </span> </li>
</ul>
</div>
</li>
<li>
<a class="uk-accordion-title" href="#"> Your First webpage </a>
<div class="uk-accordion-content">
<!-- course-video-list -->
<ul class="course-curriculum-list">
<li> Headings <span> 23 min </span>
<li> Paragraphs <span> 23 min </span> </li>
<li> Emphasis and Strong Tag <a href="#trailer-modal" uk-toggle>
Preview
</a> <span> 23 min
</span>
</li>
<li> Brain Streak <span> 23 min </span> </li>
<li> Live Preview Feature <span> 23 min </span> </li>
</ul>
</div>
</li>
<li>
<a class="uk-accordion-title" href="#"> Some Special Tags </a>
<div class="uk-accordion-content">
<!-- course-video-list -->
<ul class="course-curriculum-list">
<li> The paragraph tag <span> 23 min </span> </li>
<li> The break tag <a href="#trailer-modal" uk-toggle> Preview </a>
<span> 23 min </span> </li>
<li> Headings in HTML <span> 23 min </span> </li>
<li> Bold, Italics Underline <span> 23 min </span>
</li>
</ul>
</div>
</li>
<li>
<a class="uk-accordion-title" href="#"> HTML Advanced level </a>
<div class="uk-accordion-content">
<!-- course-video-list -->
<ul class="course-curriculum-list">
<li> Something to Ponder<span> 23 min </span> </li>
<li> Tables <span> 23 min </span> </li>
<li> HTML Entities <a href="#trailer-modal" uk-toggle> Preview
</a><span> 23 min </span> </li>
<li> HTML Iframes <span> 23 min </span> </li>
<li> Some important things <span> 23 min </span> </li>
</ul>
</div>
</li>
</ul>
</li>
<!-- course description -->
<li class="course-description-content">
<h4> Description </h4>
<p> *** The #1 bestselling JavaScript course on Udemy! ***
*** Completely re-built from scratch in October 2020 (65 hours video) ***
"Really, really well made course. Super in-depth, with great challenges and projects that will solidify your Javascript understanding. I found the lectures were paced perfectly -- Jonas doesn't skip over anything that might be useful to a JS developer" — Carson Bartholomew</p>
<p> JavaScript is the most popular programming language in the world. It powers the entire modern web. It provides millions of high-paying jobs all over the world.
That's why you want to learn JavaScript too. And you came to the right place!
</p>
<h4> What you’ll learn </h3>
<div class="uk-child-width-1-2@s" uk-grid>
<div>
<ul class="list-2">
<li>Become an advanced, confident, and modern JavaScript developer from scratch </li>
<li>Become job-ready by understanding how JavaScript really works behind the scenes</li>
<li>JavaScript fundamentals: variables, if/else, operators, boolean logic, functions, arrays, objects, loops, strings, etc.</li>
<li>Modern OOP: Classes, constructors, prototypal inheritance, encapsulation, etc.</li>
</ul>
</div>
<div>
<ul class="list-2">
<li>Asynchronous JavaScript: Event loop, promises, async/await, AJAX calls and APIs</li>
<li>Modern tools for 2020 and beyond: NPM, Parcel, Babel and ES6 modules</li>
<li>Get downloadable lectures and friendly support in the Q&A area</li>
</ul>
</div>
</div>
<h4> Requirements </h4>
<ul class="list-1">
<li>No coding experience is necessary to take this course! I take you from beginner to expert!</li>
<li>Any computer and OS will work — Windows, macOS or Linux. We will set up your text editor the course.</li>
<li>A basic understanding of HTML and CSS is a plus, but not a must! The course includes an HTML and CSS crash course.</li>
</ul>
<h4> Here is exactly what we cover in this course: </h4>
<p> My name is Jonas, I'm an experienced web developer and designer, and one of Udemy's top instructors. I have been teaching this bestselling course since 2016 to over 350,000 developers, always listening to feedback and understanding exactly how students actually learn.
Recently, I took all my teaching experience to build this new and greatly improved JavaScript course. It's now the best and most in-depth JavaScript course that you will find on Udemy (and maybe the entire internet).</p>
<p> I know how students learn JavaScript and what they need in order to master it. And with that knowledge, I designed the ideal course curriculum. It's a unique blend of real-world projects, deep explanations, theory lectures, and challenges, that will take you from zero to an expert and confident JavaScript developer in just a couple of weeks.
</p>
<p> So what exactly is covered in the course?
Build 5 beautiful real-world projects for your portfolio! In these projects, you will learn how to plan and architect your applications using flowcharts and common JavaScript patterns
Master the JavaScript fundamentals: variables, if/else, operators, boolean logic, functions, arrays, objects, loops, strings, and more
Learn modern JavaScript (ES6+) from the beginning: arrow functions, destructuring, spread operator, default arguments, optional chaining (ES2020), and more
How JavaScript works behind the scenes: engines, the call stack, hoisting, scoping, the 'this' keyword, reference values, and more.
Deep dive into functions: arrow functions, first-class and higher-order functions, bind, and closures.
Deep dive into object-oriented programming: prototypal inheritance, constructor functions (ES5), classes (ES6), encapsulation, abstraction, inheritance, and polymorphism. [This is like a small standalone course]
Deep dive into asynchronous JavaScript: the event loop, promises, async/await, and error handling. You will use these to access data from third-party APIs with AJAX calls. [This is like a small standalone course]
Learn modern tools that are used by professional web developers: NPM, Parcel (module bundler), Babel, and ES6 modules
Check out the course curriculum for an even more detailed overview of the content :)
</p>
</li>
<!-- course Faq-->
<li>
<h4 class="my-4"> Course Faq</h4>
<ul class="course-faq" uk-accordion>
<li class="uk-open">
<a class="uk-accordion-title" href="#"> Html Introduction </a>
<div class="uk-accordion-content">
<p> The primary goal of this quick start guide is to introduce you to
Unreal
Engine 4`s (UE4) development environment. By the end of this guide,
you`ll
know how to set up and develop C++ Projects in UE4. This guide shows
you
how
to create a new Unreal Engine project, add a new C++ class to it,
compile
the project, and add an instance of a new class to your level. By
the
time
you reach the end of this guide, you`ll be able to see your
programmed
Actor
floating above a table in the level. </p>
</div>
</li>
<li>
<a class="uk-accordion-title" href="#"> Your First webpage</a>
<div class="uk-accordion-content">
<p> The primary goal of this quick start guide is to introduce you to
Unreal
Engine 4`s (UE4) development environment. By the end of this guide,
you`ll
know how to set up and develop C++ Projects in UE4. This guide shows
you
how
to create a new Unreal Engine project, add a new C++ class to it,
compile
the project, and add an instance of a new class to your level. By
the
time
you reach the end of this guide, you`ll be able to see your
programmed
Actor
floating above a table in the level. </p>
</div>
</li>
<li>
<a class="uk-accordion-title" href="#"> Some Special Tags </a>
<div class="uk-accordion-content">
<p> The primary goal of this quick start guide is to introduce you to
Unreal
Engine 4`s (UE4) development environment. By the end of this guide,
you`ll
know how to set up and develop C++ Projects in UE4. This guide shows
you
how
to create a new Unreal Engine project, add a new C++ class to it,
compile
the project, and add an instance of a new class to your level. By
the
time
you reach the end of this guide, you`ll be able to see your
programmed
Actor
floating above a table in the level. </p>
</div>
</li>
<li>
<a class="uk-accordion-title" href="#"> Html Introduction </a>
<div class="uk-accordion-content">
<p> The primary goal of this quick start guide is to introduce you to
Unreal
Engine 4`s (UE4) development environment. By the end of this guide,
you`ll
know how to set up and develop C++ Projects in UE4. This guide shows
you
how
to create a new Unreal Engine project, add a new C++ class to it,
compile
the project, and add an instance of a new class to your level. By
the
time
you reach the end of this guide, you`ll be able to see your
programmed
Actor
floating above a table in the level. </p>
</div>
</li>
</ul>
</li>
<!-- course Announcement-->
<li>
<h4> Announcement </h4>
<div class="user-details-card">
<div class="user-details-card-avatar">
<img src="assets/images/avatars/avatar-2.jpg" alt="">
</div>
<div class="user-details-card-name">
Jonas Schmedtmann <span> Instructor <span> 1 year ago </span> </span>
</div>
</div>
<article class="uk-article">
<p class="lead"> Nam liber tempor cum soluta nobis eleifend option
congue </p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis
aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui
officia
deserunt mollit anim id est laborum.</p>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi
enim ad
minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl
ut
aliquip ex ea commodo consequat. Nam liber tempor cum soluta nobis eleifend
option congue nihil imperdiet doming id quod mazim placerat facer possim
assum.
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh