-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1209 lines (1098 loc) · 60.5 KB
/
index.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>
<script src="https://kit.fontawesome.com/2ad8484a66.js" 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>Learn Web-development(Front-End Development)</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500&family=Italianno&family=Montserrat&family=Nunito:ital,wght@0,200;1,200&family=Open+Sans+Condensed:ital,wght@0,300;1,300&family=Open+Sans:ital,wght@0,300;0,400;1,300&family=Poppins:ital,wght@0,100;0,200;1,100;1,200&family=Quicksand:wght@300;400&family=Roboto+Condensed:ital,wght@0,300;0,400;1,300&family=Roboto:ital,wght@0,100;0,400;1,100;1,300;1,400&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Nav-Bar --->
<nav>
<div class="brand">
<li><i id="tc" class="fas fa-laptop-code"></i> <a href="#prev">TC-Camp</a></li>
</div>
<ul>
<li class="active"><a href="#prev">Preview</a></li>
<li><a href="#side">Learning</a></li>
<li><a href="#pray">Assignment</a></li>
</ul>
</nav>
<!-- Line breaks to help with margin of about 10px -->
<br>
<!-- Enjoy yourself -->
<div id="container">
<section id="prev">
<h1>WEB DEVELOPMENT PROGRAMME</h1>
<p>
<h2>what is web-development?</h2>
<br>
<p>
<strong> Web development </strong> is the work involved in developing a Web site for the Internet (World
Wide Web) or an
intranet (a private network). <strong> Web development</strong> can range from developing a simple
single
static page of
plain text to complex web applications, electronic businesses, and social network services. A more
comprehensive list of tasks to which Web development commonly refers, may include Web engineering, Web
design, Web content development, client liaison, client-side/server-side scripting, Web server and
network
security configuration, and e-commerce development.<br>
</p>
<br>
<p>
Among Web professionals, <strong> "Web development"</strong> usually refers to the main non-design
aspects of building Web
sites: writing markup and coding. <strong>Web development</strong> may use content management systems
(CMS)
to make
content changes easier and available with basic technical skills. <br>
</p>
<br>
<p>
For larger organizations and businesses, Web development teams can consist of hundreds of people (Web
developers) and follow standard methods like Agile methodologies while developing Web sites. Smaller
organizations may only require a single permanent or contracting developer, or secondary assignment to
related job positions such as a graphic designer or information systems technician. <strong>Web
development</strong> may be a
collaborative effort between departments rather than the domain of a designated department. There are
three
kinds of Web developer specialization: <b> front-end developer, </b> <b>back-end developer,</b>
<b>and full-stack</b> developer.
Front-end developers are responsible for behavior and visuals that run in the user browser, while
back-end
developers deal with the servers. <br>
</p>
</p>
</section>
<br>
<section id="place">
<h1>Front-end development</h1>
<br>
<p>
<b> Front-end web development</b> is the development of the graphical user interface of a website,
through the
use of HTML, CSS, and JavaScript, so that users can view and interact with that website.
</p>
<br>
<h3>Three main languages and building blocks of the website</h3>
<br>
<div class="group">
<div class="pic">
<img src="html.svg" alt="">
<div class="up">
<figure>
<h3>Hyper-Text Mark-up Language</h3>
<p>
Hyper Text Markup Language (HTML) is the backbone of any website development process,
without which a web page does not exist. Hypertext means that text has links, termed
hyperlinks, embedded in it. When a user clicks on a word or a phrase that has a
hyperlink, it will bring another web-page. A markup language indicates text can be
turned into images, links, and other representations. It is the HTML code that
provides an overall framework of how the site will look. The latest version of HTML is
called HTML5.HTML can embed programs written in a scripting language such as JavaScript,
affects the behavior and content of web pages.
</p>
<p>
<a target="_blank" title="click here"
href="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics">Learn
More</a>
</p>
</figure>
</div>
</div>
<div class="pic">
<img src="css.svg" alt="">
<div class="up">
<figure>
<h3>Cascading Style Sheets (CSS)</h3>
<p>
Cascading Style Sheets (CSS) controls the presentation aspect of the site and allows
your site to have its own unique look. It does this by maintaining style sheets which
sit on top of other style rules and are triggered based on other inputs, such as device
screen size and resolution.
</p>
<p>
<a href="https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps">Learn More</a>
</p>
</figure>
</div>
</div>
<div class="pic">
<img src="js.svg" alt="">
<div class="up">
<figure>
<h3>JavaScript</h3>
<p>
JavaScript is an event-based imperative programming language (as opposed to HTML's
declarative language model) that is used to transform a static HTML page into a dynamic
interface. JavaScript code can use the Document Object Model (DOM), provided by the HTML
standard, to manipulate a web page in response to events, like user input.
</p>
<p>
<a title="click here"
href="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics">Learn
More</a>
</p>
</figure>
</div>
</div>
</section>
<br>
<section class="shift">
<h2>Web-development Learning map</h2>
<div class="hide">
<img title="click here" src="https://www.freecodecamp.org/news/content/images/2020/08/devops.png"
alt="">
</div>
</section>
<br>
<section class="focal">
<h3>Focal Languages To learn</h3>
<div class="group2">
<div class="pic2">
<i id="color1" class="fab fa-html5"></i>
<div class="up2">
<h4>HTML</h4>
<p class="view">
<a title="click here" target="_blank"
href="https://www.w3schools.com/html/html_intro.asp">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color2" class="fab fa-css3-alt"></i>
<div class="up2">
<h4>CSS</h4>
<p class="view">
<a title="click here" href="https://www.w3schools.com/css/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color3" class="fab fa-js"></i>
<div class="up2">
<h4>Java-Script</h4>
<p class="view">
<a title="click here" href="https://www.w3schools.com/js/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color4" class="fab fa-sass"></i>
<div class="up2">
<h4>Sass</h4>
<p class="view">
<a title="click here" href="https://sass-lang.com/">learn-more</a>
</p>
</div>
</div>
</div>
<br>
<h3>Frameworks and Libraries</h3>
<br>
<p>
<div class="way">
<div class="rough">
<img src="https://media.istockphoto.com/photos/hand-putting-print-screen-dart-and-target-board-wooden-cube-on-up-picture-id1223992751?b=1&k=20&m=1223992751&s=170667a&w=0&h=kkBEOlnD1WH5NQdedmsbV3bZMJcjgFOoClDv3x4Ql5w="
alt="">
</div>
<div class="rough2">
<h5>What's a frame-work or library?</h5>
<p>
A framework is the basic structure of something. It's a set of ideas or facts that provide
support for something For non-technical background people; framework is a bunch of libraries,
tools that do common task in web development and it aims to ease the common activities which
have to perform in web development. Using appropriate framework is essential for a developer
because it saves an important time and efforts for building an app. Most of the applications
have a common set of functionality such as handling session data validation etc. and web
framework prevent a developer from re-writing every time a same code to create a web app.. In
the case of business problems, a framework creates the basic
structure
that gives focus and support to the problem you're trying to solve.Just as Web-development,
A
framework or library is a place designed to make your life easier, you don't get to build
things
from scratch, they provide re-usable codes developer's can use(preferably) to get their
various
development done much more faster.
</p>
</div>
</div>
</p>
<br>
<br>
<h5>Important Frameworks</h5>
<div class="group2">
<div class="pic2">
<i id="color5" class="fab fa-bootstrap"></i>
<div class="up2">
<h4>Bootstrap</h4>
<p class="view">
<a title="click here" href="https://getbootstrap.com/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color6" class="fab fa-react"></i>
<div class="up2">
<h4>React.js</h4>
<p class="view">
<a title="click here" href="https://reactjs.org/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color7" class="fab fa-git-alt"></i>
<div class="up2">
<h4>Git</h4>
<p class="view">
<a title="click here" href="https://git-scm.com/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color8" class="fab fa-vuejs"></i>
<div class="up2">
<h4>Vue.js</h4>
<p class="view">
<a title="click here" href="https://vuejs.org/">learn-more</a>
</p>
</div>
</div>
</div>
<br>
<h3>BACK-END DEVELOPMENT(If Interested)</h3>
<p>
<strong> Back end Development</strong> refers to the server side of development where you are primarily
focused on how the
site works. ... This type of web development usually consists of three parts: a server, an application,
and a database. Code written by back end developers is what communicates the database information to the
browser.
</p>
<p>
<a class="pull" title="click here" href="https://learntocodewith.me/posts/backend-development/">Learn
more</a>
</p>
<br>
<h4 class="dodo">Focal-Languages to Learn</h4>
<div class="group2">
<div class="pic2">
<i id="color9" class="fab fa-python"></i>
<div class="up2">
<h4>Phython</h4>
<p class="view">
<a title="click here" href="https://www.python.org/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color10" class="fab fa-node"></i>
<div class="up2">
<h4>Node.js</h4>
<p class="view">
<a title="click here" href="https://nodejs.org/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color11" class="fab fa-php"></i>
<div class="up2">
<h4>Php laravel</h4>
<p class="view">
<a title="click here" href="https://www.php.net/">learn-more</a>
</p>
</div>
</div>
<div class="pic2">
<i id="color12" class="fab fa-cuttlefish"></i>
<div class="up2">
<h4>C & C++ </h4>
<p class="view">
<a title="click here" href="https://www.w3schools.com/cpp/cpp_intro.asp">learn-more</a>
</p>
</div>
</div>
</div>
<br>
<p class="view">
<a class="pull to"
href="https://www.geeksforgeeks.org/top-7-programming-languages-for-backend-web-development/">learn-more</a>
</p>
</section>
<br>
<br>
<!-- Learning section -->
<section id="side">
<h1>Learning</h1>
<br>
<p>
please follow these steps accordinly in the order they are, by watching the video according to their
numbers.The numbers are there to guide you. Just have fun while learning and practising!
</p>
<br>
<h5>Start with <span><i class="fas fa-code"></i> HTML</span></h5>
<br>
<article class="hi">Let's set up our environment first</article>
<div class="check1">
<div class="pic2">
<img src="images/gege.png" alt="">
<div class="up2">
<h4>A video on setting up your environment</h4>
<p class="view">
<a href="https://youtu.be/rH1RTwaAeGc">Watch now</a>
</p>
</div>
</div>
<div class="pic2">
<img class="picer"
src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAoHCBYVFRgVEhUYGRgYGBoVGBoZGBgZHBgYGhgZGhgYGhocIS4lHB4rHxgYJjgmKy8xNTU1GiQ7QDs0Py40NTEBDAwMEA8QHBISGTQhISE0NDQ0MTQ3MTQ0NDQ1NDE0NjQxMTUxNDYxNDQ0NDQxND01MTY0NDQ0NDQ0NDQ0MTQ0NP/AABEIAM8A9AMBIgACEQEDEQH/xAAcAAABBAMBAAAAAAAAAAAAAAAAAgMFBgEEBwj/xAA+EAACAQIDBAYHBwMEAwEAAAABAgADEQQhMQUGElEiQWFxgZEHEzJCUqGxIzNicoLB0RSi8EOSsuFEwvEV/8QAGQEBAQADAQAAAAAAAAAAAAAAAAECBAUD/8QAKBEBAAICAQMDAgcAAAAAAAAAAAECAxEEEiExBUFRMvAiYXGBsdHh/9oADAMBAAIRAxEAPwDs0IQgEIQgEIQgEIQgEJo4zatCl97Wpp+Z1B8r3lex3pEwNPJXaoeVNSR/uawgW+E5fjPSsP8ARwxPbUe39qg/WQGM9JmOb2DTpj8KXI8XJgdviGcDUgd887YvezHP7eKq25K3APJLSGxGLd/vHd/zOzfUwPS1fbGHT269JfzVEH1Mja2+mAX2sZR8HDf8bzzlw9kSYHoap6QtnD/ylPclQ/RZrP6TNnD/AFmPdSqH/wBZwG0wRGx3St6V8APZFZu6nb/kwkTi/TFTH3WFdu13VPkoacgtAiTY9J7n7xrjsOtZQFa5Sol78Djqv1gixB7ZYJ519H+8pwOJBc/Y1LJVHUBfov3qT5Ez0OjAgEG4OYI65QuEIQCEIQCEIQCEIQCEIQCEIQCEIQIza226GGAOIqKnFfhBuS1tbBQSdRKttD0mYZMqSVKh6jYIvm2fymt6XcLenQqfDUZD3Otx/wAJyuBeMf6S8S33S06Y7i7DxOXylax28mLrfeYioRyDcA/2rYSMiTBphjc3OsSTMmJMisGJMVMEQG2jbCPETKUGYEqpIGtomSI34apESRHGEwRCGrQIiyJiAi0LRRExATadq9Eu8/rqRwlVvtKK3pknN6WgHaVJA7ivbOLkTa2XtF8NVSvSNnRgy8jzU9hFwewwPU0JE7u7Zp4yglekcmHSXrRx7SntB88jJaUEIQgEIQgEIQgEIQgEIQgEIQgVb0jYXjwFQ9aFag/SwB+RM4gRPRW2cL63D1afx03XxKm3znnYiAkxJizEkSKSYmKImLQExLRc2dnbPeu606YuzeSjrYnqAhJnRzYmyHxNQImQGbt1IvPv5CW7EbsvSW1OzqOWTdpIOss2xtkphqYp0+9m63brJ/YdUqW+28euGot2VHH/AAB+vlMbV6uzxx8i8X/B4af/AOZTdbuASdCDmPESIxm7jjOm3EORyPnoflI7D4p0N6bEdnV4jSTOE3i6qq/qX91mtauWk7rO4dymXi5qxXJGp+VcrUWQ2dSp5EWjZl+R6VdcuFx1jUjwOYkXjN20bOmxU8jmP5EteTHi0aljk9OtrqxWiYVUiJIm/i9lVaftoSPiXMfLTxmlabFbRaNxLnXx3pOrRqSYkiLtM2mTBavR7vScDX4XP2FUhag+A6LUHdoezunfkcEAg3BFwRoQdCJ5VtOu+ijevjUYKu3SUXoMfeUa0+9dR2X5QOowhCUEIQgEIQgEIQgEIQgEJFba27Rwq8VZ7E+yozZu5f30nLt4t9a+JulM+qp6cKnpMPxt19wsO+BeN49+aGGuqfa1Blwoeip/G+g7hczjuIcMzMBYMxa3K5vbwvGqkwukDBEwY5GyJFJMSY4RMKhJAAuSbADMknQQM4bDs7qlNSzMbADrM6pu5sNcLTtkXaxd+Z+EfhH/AHNfdPd4YZOOoAarjP8AAPhHbzMe3n26uGTo2NRwQi8vxt2D5+cNPLebz01Ru+W8XqVNGkftWHSI9xT/AOx6uWvKc2Mer1GdizklmJYk6knUmNEQ2MdIrGiDEGOkRJEPQlGIN1JB5g2PnJXCbwVEyezjtybzH7iR1DDO54aaM7a2RSxtzsBNlNj1irOU4VRijF2Sn0wOIpZyCWtnYTC1K27Wjb0x5smOd1tpY8Jtuk+RbgPJsvnpHMTsmlUzZBc+8uR+WR8ZA1N3qooLXHSV0FQBFqPZDfNmCcCkWzHFcSPw2Men925HZqPI5TwtxtTuk6dCnqPVGs1YmErit2GGdNwexsj5jL6SFr4R09tCO3UeYyl33bNbFI5IVQuQfMcTfDbu1PaIrH7OekpaovQAuWGYt2/9yVtlr9UbL4uLl7451KgERWHrMjq9NirowZWGoYG4IjuJqcblgAATkALZRkrNqPDl2iImYidvQ+5m8S43DrUyFRehVXk9tR+E6jy6pYp503O3gbA4haouUboVVHvITqPxKcx4jrnoXDYhaiq6MGVgGVhoVIuCJkh6EIQCEIQCEIQCV/fLadTD4ZqlG3FxKtyL8Ibrt1n+ZYJE7yYE18NUpgXYrdfzKeJR5i3jA4Xi8Q9Ri1R2dzqzG5MYJm5iaE1GELBtoUxqJlhE09ZAsrEERwzBgNkS/wC527nqwK9ZemRdFPuA+8R8R+Q+ULu5se5FaoMhmgPWfiPZyl2oY5gbN0vkZ6Rhtau4c3kc6lbzSJ/WS9tbUTDUy75nRF63bqA/czk+NxT4iqXfpO5AAHbkqqOXUJOb2U8S9Q1KqHgGScB4lRe3keZIErfd5zC1Jr2tGmzx+iY6qzvfw2aGynf1l+FBSZUqlyRwFmKdIAE2DCxsDa45yVw+7KGrRpNiReuhqIyU3K2KsUF24SSSpFrXBj1beDEYl6oRbpUpcD0yRwA8K8VQW4ekXXiF7m5tnNHgrWpq9ZE9Txeru6hku3GbFczZs9cr5SNlvYfYeGRFd6gqsjo9cU2PAMNUdqYZTYMHU8LEHQMARI19lnDVG9a1MqC6LZ0YtrwuFUsyqbA3I6xNUCldi7u5Jy4VA4r5kkt13v8A5phq9MXC0gQQLcTG4OYOmt8vEEjWwkxuNLW01tEx7N2htKki1aYD8FbhLtTIR0ZGLKFuLMh4rFTbS8fwGOemScNSrlG4b+squnE4vdzwEDQW67AayKq7Rc5DhQXDDgUCxXTPX/O+a9bEu/tu7X5sT/mkRGo0trdVpnWtpipjK6F3D4emzmo54UQOvrAeNFPCWQEEjXrkPszZ716iUqYzY69SjrY9gEY4Z07czYXqKfrKg+0qAE80TUL39Z8uqVimtnYJKFNadMdFRbtJ62PaTcyl+kDbNz/TUzkLNUI56qnhqfCWveHaow1Fn1c9FBzc6eA1PdOQ1HLMWYksxLEnUk5kmFNWhaL4YAQhu06J6PN9Vw6/0+KJ9Xe9N7X4LnpK1s+G+d87Z9WlAKwAhHpvD10qKHpsGVhdWUggjmCI9POmxN48RgjfDvZTmUbpIe9Toe0WM6nuXvyuLumIanTrXAVRxKHFtRxEi9/dveUXiEIQCEIQCEIQKDvnuzk1eiuRzqKBpzdRy5jx5znGJoWnoNrdc4JvdtnD/wBS64Vfsr+17pf3ig+Dl42ytIsT7IxxaNDUd8UmIDWDZEi630YdUw4gO2mCI5EWhWzg9pVKX3bm3wnNfI6eEsmzd6KZyqqUPxDNf5HzlSIiSJ6Uy2pPZqZ+HizeY7/MeXUqVVXAZGDA9YIIkXtDd+hVuSvAx95MvMaGUbDYt6Z4qblT2HI940Msez97DkK6fqT91/jym5XkUvGrxpyr+n58E9WG2/5R2P3ZrU7mn01/Dk1uRXr8LyBdCCQQQRqCLEd4nU8JjadUXpuG7tR3jURGN2dTrC1RA3bow7mGcluLW3esri9UyY56c1f7csgRLdj9zyLmg9/wvkfBh+4lcxeBqUjaojL3jI9x0M1L4bU8w6uHlYsv027/AB7tK0xaPWmzsvZz16i06erHM9Sr7zHsE820mtydh+uqetqDoUzkDo76gdoGp8J0lyALnIDMnsjOAwaUUWnTFlQWHbzJ7Sc5WN+9s8Cf09M9Jxd7e6nw95+nfMRUt6NsHE1iQegl1QdnW3efpaQ9oq0AJkEcMLRy0xaEItC0XAiAnhvkYzobHqj9ph0uL9Y+kC47sekKvh7JXvWp6dI9NR+Fj7Xc3mJ1jYu3KGKXjoVA3xKcmX8y6j6Tzks3dl1ai1FNBmV79EobHzHVz6pUelYSP2N6z1FP+oPFU4QXNgLk9kIEhCEpu/O8v9OnqaJ+1cZkf6anr/Merz5QIX0ib134sJh2y9ms4+dNT9T4c5yvEULyScRp1hdIoVWstN26Kk8DG/Q4iCR+XL5zdwuJ4ug+TWyPxD+Y1iKF5qA6I7GwBCN8J6geS38s4SeyepjIeUyRNXZeJLqeLUW8f8tN0iRTZESRHSIkiFNlZi0WRMWgCOykFSVI0IJBHiJOYDemqlhUAqDno3mMj4iQZEwRM63tXxOnjl4+PLGr139/LoOA27Rq2Cvwt8L9E+B0PgZI1KYYEMAQdQRcHwM5WRN/AbarUbBHJUe63SXwvmPCbdOX7Whyc3pPvit+3+rTj91KL5pem3Zmv+06eBE291Nn08MGDOpqMbFswOEHIKT5mRlDexHXhqKUY5EjpL/I+c26dZXF0YMOYN5lamLJ48sMeXl8ftkjcfn3WHbG0lw9Jqr9WSj4mPsqP80vOQYvEtUdnqG7OeIn/OqSG3domq/CrHgS4UXyJ62kVNC1YraYidu5S02pFpjUz7MQhMSMihAiYEzALQmYQEkTEXaJtASlBnYKgJLGwAnRtyd31WqoPSb2nbqsvuDsvYdsouz8WaThxpoRzB1ndN18CiUhURg/rFDcQ04dQB5yonYQhAht5NtphKRds2OSL8TfwNTOLYzEtUdndruxLMe0/tLT6TS64pS9yhpgp+GxIcDtvY+IlPV1Ohz5GAhogiOssTaFa7pNLE0byTZZr1EgamxiVcqetcvD/DJsiRFFeF1Pb9cpMyLBFpi0XMQGyIkiOERJEBBESYsxJgJIiDHLRBEBMEdl9kkXyyNsuUDEmVJjZBiYtogiRWIGEwYRm8UDEXmRAchATNoGIETNpm0BFp0H0Zbyerb+kqt0HN6RPuudU7m6u3vlRwexqtQ5LYczl8tZc9092cMKqiuTUqXuqgnhUrncheVuswOpwhCVFX352EcVQHqxeoh4lGQ4gcmW58D+mcexOCZHKVVZHHU6lT8+rtnoiamP2fSrrwVqauvJgDbtB1B7RBDz5xOvaNM89ORikrqdcvp5zpW2PRshu2DqFD8D3ZD2BvaHjxSiba2HiMOft6LIBl6wdJG7eJch42Mi9mm6dYzjTLDDYWo1/VAtYXPDnl+XU6RAxPxDxH8QGaqdclFNxeaRsw6JvNrDnojy8oCjMQaEKwYgxwxMBBiDFzBgIiWjkQYDZmCIox1qqj2VGlswPPnAYFMnMAzIwx6yBlfs89LxTVjn1XN8uZtf6CMub6wFuqL+LQ6+YNv8yjDam2kcSmWPRBPcLzbpbHqt7vCObG0Ij5kSbp7AH+pUHcov85u0tlUV90sfxG3ygVtBfTPum/h9l1X0QgczkJYUCrkiqvcB9TFFidbnvlEbQ2Go+8e/YmfzkjQp06fsIL82zPy/mZ4TNvCbMqVD0EZu4ZeekDXeuzZEm3IZDyEue4mz7K1dhm3QT8o9o+Jy/TNHCbnVW+8ZEH+4+Qy+cu2Ewy00VF0UBR4dffBLYhCEIIQhAI26Aggi4ORBzB8I5CBUtrbiYWqeOkDQqahqeQvzKaeVpQtt7kYugCQgroAQHS5ZRfizTXnpfUztUxA81vRUm1MkNcgqw4SCMwL8+rqzm1hgwBV9Qe/IjLPrncts7t4bFD7ekpbqcdFx+oZnuNxOebx7kf0aNVp1S9O6rwuOmuZA6QyYZ8hBCrNCZYTEjJgiJMVMEQEGYMUZhVJyAJ7s4DZiTN1NnudbL3nPyEeTAIPaJb+0eWvzgRRj1PBO3ukDm2X1kqpVPZAHcLfPWIbEiBrUtlD338FF/mZuUsFTX3ATzYlvkMo0cUIPjQMzl35QJBHtkMvygD6TN7yFfbtJfev+XP6TawG0fWXZabBB7zEC57BneUSAiwkgtrbfNMdGwOgsLk+cpeO2jVrEmo7EfDxHhH6dJNo67sjZ7YksKHC/AQrkMtkJzsTfW3VrLRgtyzrVqDuQX/uP8Q9FeyP6bZ1K4s1a9dv124B4IE+cucptFYPd+hT0QMeb9I/PL5STVQBYCw7IuEIIQhAIQhAIQhAIQhAIQhAJE7zYX1uFrJ1lCR3r0h8xJaJYXFj1wPP0TJrE7IFOo6MSeF2UDTIE2+UylBV0Uf52mRUQtBm0Ux9NnE+0QO7OSluyHCZRpJgUHVfvP7CbAsMhkOzIfKbmG2fUqewjt+VSR5yL2htBKLFKiOHGqlCh/utlAXVewkbWr9s0sdtR3+7AQeZ8zl8pEPSdvbJPef2kEpX2kg1a55Ln/wBTRfapPsJ4sf2H8xtML2R1cPA1nxNVtXIHJcvnr843/T3zNyeZN5IrR7JN4DZQQcdQZ6heXaYEdsvYgID1cl1C9bd/IR7a21VQcK9yqMv/AIIbY2tw9Fczy5d8rTqXPExuTA16zM7cTm5+ndN/d/Y5xOJo0APvHVW7Evdz4KGMSlGdI9DuyOKvUxDDKmvAv531PgoI/VCOv00CgACwAAA5AZARyEJQQhCAQhCAQhCAQhCAQhCAQhCAQhCBQt6NlO2IJpozcShuipOfsnTuv4xnDbpV29oKo/Ec/JbzoUIXaq4Xc1B947N2KAo+dzJjDbDw6ezSW/Nukf7ryThCEhbaSu73brU8bTsbLVQH1dS2h+Fuanl1aiWSEDzVjsDUoVGpVlKuhsQfkQesHUGLo2bI6/Wdt3w3Xp42n1LVUfZvb+xuan5aicXxuAek7U6ilKiGzL9CD1g5EHrkCDRtMpTuQALk5AR/DNx2W3S+ssGBwApi+rHU8uwQrVwGzQnSfN+odS/9yN23tIglKebdZ+Hs747vNto0mNFAyva7FgRYH4QdT26SqI2dwc+cGzow5JudYtaMcpYojJhf6zcpsjaHPkcoGmqTu3o82Z6jBUwRZql6zfr9n+0LOTbH2Ua9enSHvuAexdXP+0Gd+RQAAMgBYDkBpKhcIQgEIQgEIQgEIQgEIQgEIQgEIQgEIQgEIQgEIQgEIQgEre9u7CYxLiy1kH2b8+vgbmp+XneyQgcN2Ps50xDrUQq6dErbO5PVzv1EazpWwd3AtqlcAtqq6he08zJ84RC4qFV4wLBrZ25X/wA1mzA0NqbJoYheDEUkqLyZQbdoOoPdOfba9ElJrtg6rUz8D3dPBvaXxvOoQgedNqbrYvCXOIoMUHv0+mneWHsj8wEiQAwJBnqAiVnbe42CxN2akKbn/UpWRr8yB0W8QYFO9EWy2Z6mJa/Cg9Ul9OJrFz4LYfqM6xIvd/Y6YSglBCSFuSxtdiSSSbd8lIBCEIBCEIBCEIBCEIH/2Q=="
alt="">
<div class="up2">
<h4>HTML & CSS Books(by John Duckett) </h4>
<p class="view">
Please this is a must read book, to improve your skills and aquire more knowledge on HTML
amd CSS
</p>
<p class="view">
<a href="https://wtf.tw/ref/duckett.pdf">learn-more</a>
</p>
</div>
</div>
</div>
<br>
<h4> Your Journey Begins</h4>
<div class="start">
<div class="most">
<a href="https://youtu.be/UB1O30fR-EE">
<img class="maze" src="images/Screenshot (150).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3> Back-up tutorial</h3>
<p>
Hope you had fun with the last two videos. Please continue following their lectures and
teachig, and make sure you always code once they start
coding. Don't just take this as a series of videos. Your final Video on HTML!.
</p>
<p class="view us">
<a href="https://youtu.be/UB1O30fR-EE">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/qz0aGYrrlhU">
<img class="maze" src="images/Screenshot (153).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up tutorial</h3>
<p>
Please follow their lectures and teaching's too, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Continue with this!.
</p>
<p class="view us">
<a href="https://youtu.be/qz0aGYrrlhU">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/pQN-pnXPaVg">
<img class="maze" src="images/Screenshot (152).png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Main-Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Start with this!.
</p>
<p class="view us">
<a href="https://youtu.be/pQN-pnXPaVg">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<h4>We move to CSS</h4>
<div class="start">
<div class="most">
<a href="https://youtu.be/yfoY53QXEnI">
<img class="maze" src="images/Screenshot (154).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up tutorial</h3>
<p>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Well-done for reaching here. Let's
continue!.
</p>
</p>
<p class="view us">
<a href="https://youtu.be/yfoY53QXEnI">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/1Rs2ND1ryYc">
<img class="maze" src="images/Screenshot (155).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up tutorial</h3>
<p>
Please follow their lectures and teaching's too, and make sure you always code once they
start
coding. Don't just take this as a series of videos. If you don't understand you can
always
go back Start with this!.
</p>
<p class="view us">
<a href="https://youtu.be/1Rs2ND1ryYc">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/mU6anWqZJcc">
<img class="maze" src="images/Screenshot (156).png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Main tutorial</h3>
<p>
Welcome dear!, You have advanced a little, let's start this coding journey
. Don't just take this as a series of videos. Start with this!.
</p>
<p class="view us">
<a href="https://youtu.be/mU6anWqZJcc">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<h4>More About CSS Grids and Flex-box</h4>
<div class="start">
<div class="most">
<a href="https://youtu.be/jV8B24rSN5o">
<img class="maze" src="images/razzy.png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Main Tutorial</h3>
<p>
Please follow their lectures and teaching's. The purpose of this video is to build your
strength on grids and flex-box. Don't just take this as a series of videos. Continue
with
this!.
</p>
<p class="view us">
<a href="https://youtu.be/jV8B24rSN5o">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/qZv-rNx0jEA">
<img class="maze" src="images/Screenshot (162).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Main Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. let's continue with this!.
</p>
<p class="view us">
<a href="https://youtu.be/qZv-rNx0jEA">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/9zBsdzdE4sM">
<img class="maze" src="images/Screenshot (160).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Start with this!.
</p>
<p class="view us">
<a href="https://youtu.be/9zBsdzdE4sM">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<h4>Bootstrap Learning, Journey Continues!</h4>
<div class="start">
<div class="most">
<a href="https://youtu.be/5GcQtLDGXy8">
<img class="maze" src="images/Screenshot (167).png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Main Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Well-done!.
</p>
<p class="view us">
<a href="https://youtu.be/5GcQtLDGXy8">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/eow125xV5-c">
<img class="maze" src="images/Screenshot (168).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Let's continue!.
</p>
<p class="view us">
<a href="https://youtu.be/eow125xV5-c">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/4sosXZsdy-s">
<img class="maze" src="images/Screenshot (170).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Wonderful!, well done for making it
this
far..
</p>
<p class="view us">
<a href="https://youtu.be/4sosXZsdy-s">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<h4> Preprocessor & Version-Control Learning</h4>
<div class="start">
<div class="most">
<a href="https://youtu.be/USjZcfj8yxE">
<img class="maze" src="images/Screenshot (163).png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Main Tutorial</h3>
<p class="view us">
Good work done so far!, lets follow up with this preprocessor, so you can be able to
work
with your terminal.Start with this
</p>
<p class="view us">
<a href="https://youtu.be/USjZcfj8yxE">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/St5B7hnMLjg">
<img class="maze" src="images/Screenshot (165).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Welcome!, hope you are enjoying your journey so far, Let's improve our css so vastly by
learning saas(Synthetic and awesome styles sheet).
start with this.
</p>
<p class="view us">
<a href="https://youtu.be/St5B7hnMLjg">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/nhNq2kIvi9s">
<img class="maze" src="images/Screenshot (162).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Start with this!.
</p>
<p class="view us">
<a href="https://youtu.be/nhNq2kIvi9s">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<h4>Java-Script Learning</h4>
<div class="start">
<div class="most">
<a href="https://youtu.be/W6NZfCO5SIk">
<img class="maze" src="images/Screenshot (172).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Continue with this!.Welldone
</p>
<p class="view us">
<a href="https://youtu.be/W6NZfCO5SIk">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/PkZNo7MFNFg">
<img class="maze" src="images/Screenshot (171).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. continue with this!.
</p>
<p class="view us">
<a href="https://youtu.be/PkZNo7MFNFg">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/hdI2bqOjy3c">
<img class="maze" src="images/Screensshot (156).png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Main Tutorial</h3>
<p>
Welcome to java-script. Follow their lectures and teaching's, and make sure you always
code
once they start
coding. Start with this!. Coding is fun right?
</p>
<p class="view us">
<a href="https://youtu.be/hdI2bqOjy3c">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<h4>Java-Script library with an additional grid content</h4>
<div class="start">
<div class="most">
<a target="_blank" href="https://youtu.be/Ke90Tje7VS0">
<img class="maze" src="images/Screenshot (175).png" alt="">
<div class="mist">
<h2>3rd</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow their lectures and teaching's, and make sure you always code once they
start
coding. Don't just take this as a series of videos. Continue with this!.Welldone
</p>
<p class="view us">
<a href="https://youtu.be/Ke90Tje7VS0">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://youtu.be/w7ejDZ8SWv8">
<img class="maze" src="images/Screenshot (174).png" alt="">
<div class="mist">
<h2>2nd</h2>
</div>
</a>
<div>
<figure>
<h3>Main Tutorial</h3>
<p>
Welcome to java-script. Follow their lectures and teaching's, and make sure you always
code
once they start
coding. Start with this!. Coding is fun right?
</p>
<p class="view us">
<a href="https://youtu.be/w7ejDZ8SWv8">Watch video <i id="eye"
class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
<div class="most">
<a href="https://courses.kevinpowell.co/courses/conquering-responsive-layouts/233002-introduction">
<img class="maze" src="images/lolo.png" alt="">
<div class="mist">
<h2>1st</h2>
</div>
</a>
<div>
<figure>
<h3>Back-up Tutorial</h3>
<p>
Please follow these lectures and teaching's, and make sure you always code once they
start
coding. The purpose of this course is to advance your knowlegde of grids.Review this,
congrats in advance!.
</p>
<p class="view us">
<a
href="https://courses.kevinpowell.co/courses/conquering-responsive-layouts/233002-introduction">Watch
video <i id="eye" class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>
</div>
<br>
<br>
<!--New content that was added-->
<h4>Additional and updated content which covers all previous sections <span class="break-me">& intro to
UI/UX design with figma</span> </h4>
<div class="start-1">
<div class="most most-6">
<a href="https://youtu.be/Qqx_wzMmFeA">
<img class="maze-1" src="images/Screenshot (262).png" alt="">
<div class="mist">
<h2>4th</h2>
</div>
</a>
<div>
<figure>
<h3>Java-Script Lecture(Deeper-Dive)</h3>
<p>
Please follow these lectures, teaching's and enjoy coding. The purpose of this course
is to refresh your knowlegde on Java-Script. Endeavour to, do all the projects with the
tutor. Congrats in advance!.
</p>
<p class="view us">
<a href="https://youtu.be/Qqx_wzMmFeA">Watch
video <i id="eye" class="fas fa-long-arrow-alt-right"></i></a>
</p>
</figure>
</div>
</div>