forked from Ja7ad/W3Schools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
where_to_start.html
1430 lines (1265 loc) · 62.4 KB
/
where_to_start.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-US">
<!-- Mirrored from www.w3schools.com/where_to_start.asp by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 07 Jun 2022 11:03:08 GMT -->
<head>
<title>W3Schools - How To Become a Web Developer (Complete Beginners Getting Started With Web Development)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Keywords" content="Web Development, Learn to code, Where to start, Complete beginners start here, Roadmap, Guided Path, Free Tutorials, Front-end, Back-end, Fullstack, Create your own website">
<meta name="Description" content="Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.">
<meta property="og:image" content="https://www.w3schools.com/images/w3schools_logo_436_2.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="436">
<meta property="og:image:height" content="228">
<meta property="og:title" content="How To Become a Web Developer">
<meta property="og:description" content="To become a web developer start here. Complete beginners guided path.">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="preload" href="lib/fonts/fontawesome8deb.woff2?14663396" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="lib/fonts/source-code-pro-v14-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="lib/fonts/roboto-mono-v13-latin-500.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="lib/fonts/source-sans-pro-v14-latin-700.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="lib/fonts/source-sans-pro-v14-latin-600.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="lib/fonts/freckle-face-v9-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" href="lib/w3schools30.css">
<script>
function gSearch(el) {
var cx = '012971019331610648934:m2tou3_miwy';
var gcse = document.createElement('script'); gcse.id = 'gSearch'; gcse.type = 'text/javascript'; gcse.async = true;
gcse.src = 'https://www.google.com/cse/cse.js?cx=' + cx;
var el = document.getElementById('gSearch');
if (el == null) {
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
}
open_search(el);
};
function gTra(el) {
var gtra = document.createElement('script'); gtra.id = 'gTra'; gtra.type = 'text/javascript'; gtra.async = true;
gtra.src = '../translate.google.com/translate_a/elementa0d8.js?cb=googleTranslateElementInit';
var el = document.getElementById('gTra');
if (el == null) {
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gtra, s);
}
open_translate(el);
};
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3855518-1', 'auto');
ga('require', 'displayfeatures');
ga('require', 'GTM-WJ88MZ5');
ga('send', 'pageview');
</script>
<style>
/* Customize w3schools23.css */
#nav_tutorials,
#nav_references,
#nav_exercises {
margin-top: 0;
}
@media screen and (min-width: 769px) {
.w3-bar-block .w3-button {
padding: 0 16px !important;
}
}
.fa {
font-size: 20px;
}
#main {
padding: 0;
border-right: none;
}
.fa-thumbs-o-up:hover {
color: #fff;
}
@media (min-width:1675px) {
#main {
width: auto;
}
}
#nav_tutorials,
#nav_references,
#nav_exercises {
display: none;
padding-bottom: 40px;
position: absolute;
width: 100%;
z-index: 5 !important;
}
#nav_tutorials h3,
#nav_references h3,
#nav_exercises h3,
#sectionxs_tutorials h3,
#sectionxs_references h3,
#sectionxs_exercises h3 {
padding-left: 6px;
color: #FFF4A3;
}
div.cse .gsc-control-cse,
div.gsc-control-cse {
padding: 0;
margin-top: 0;
}
/* Customize W3.CSS */
.w3-col.l4 .w3-card-2 {
padding: 15px 10px;
height: 260px;
}
.w3-bar {
position: relative;
z-index: 4;
font-size: 18px;
background-color: white;
color:#282A35;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Source Sans Pro', sans-serif;
}
h1 {
font-size: 80px;
margin: 2px 0 -20px 0 !important;
}
.learn h1 {
margin: 10px 0 !important;
}
.green-border {
border-left: 4px solid #04AA6D;
}
.w3-round, .w3-round-medium {
border-radius: 5px;
}
.tryit-button {
background-color: #04AA6D;
color: white;
border-radius: 25px;
font-size: 18px;
width:200px;
}
.tut-button {
background-color: #04AA6D;
color: white;
font-size: 18px;
margin: auto;
display: block;
width: 200px;
border-radius: 25px;
}
.w3csstut {
height: 390px;
}
.tut-button:hover,.tryit-button:hover,.exercise-button:hover,#getdiploma a:hover {
background-color: #059862 !important;
color:white!important;
}
.bar-item-hover:hover {
background-color: #04AA6D!important;
color:white!important;
}
.bar-icon-hover:hover,.fa-logo:hover {
background-color: white !important;
color:#059862!important;
}
.mystyle,.mystyle:hover {
background-color: #282A35!important;
color:white!important;
}
.closenav_span:hover {
background-color: #282A35!important;
color: #059862!important;
}
.ref-button {
background-color: white;
font-size: 18px;
margin: auto;
display: block;
width: 200px;
border-radius: 25px;
color: #000;
}
.ref-button:hover {
background-color: #E7E9EB!important;
color: black;
}
.black-color {
background-color: #282A35;
color: white;
}
.black-color:hover {
background-color: #000!important;
color: white!important;
}
.grey-color {
background-color: #E7E9EB;
color: black
}
.exercise-button {
padding: 70px 50px;
font-size: 35px;
width:87%;
opacity:0.97;
}
#w3loginbtn {
width:130px;
background-color:#04AA6D;
color:white;
border-radius:25px;
font-size:18px;
line-height:1.5;
display:none;
}
#loginactioncontainer {
margin-left:50px;
}
@media screen and (min-width:601px) {
#navbtn_menu {
display: block;
}
}
@media screen and (max-width:430px) {
#w3loginbtn {
width:90px;
line-height:2;
font-size:14px;
}
#loginactioncontainer {
width:70px;
margin-left:16px;
}
}
@media screen and (min-width:861px) {
#myAccordion,#navbtn_menu,
.hidesm {
display: none !important;
}
}
@media screen and (max-width:430px) {
#nav_translate_btn,#nav_search_btn,#navbtn_menu {
padding:8px 8px;
}
}
@media screen and (max-width:860px) {
.barex, .navex {
display: none !important;
}
#googleSearch, #google_translate_element {
top:75px;
width:100%!important;
right:0!important;
padding-top:19px!important;
}
}
@media screen and (max-width:768px) {
h1,
.w3-jumbo {
font-size: 60px !important;
}
}
@media screen and (max-width:380px) {
div.cse .gsc-control-cse,
div.gsc-control-cse {
padding: 0;
margin-top: -4px;
}
}
#w3_cert_badge {
position: absolute;
right: 5%;
width: 220px;
transform: rotate(10deg);
bottom: -15%;
}
#w3_cert_arrow {
position: absolute;
right: 240px;
width: 220px;
transform: rotate(10deg);
bottom: 0;
z-index: 1;
}
#howto_padding {
padding: 48px 24px 100px 24px
}
#getdiploma {
position: relative;
padding: 0 60px 50px 60px;
margin-bottom: 85px;
background-color: #282A35;
color: #FFC0C7;
font-family: 'Source Sans Pro', sans-serif;
}
#getdiploma p {
font-size: 52px;
margin-top: 1em;
margin-bottom: 1em;
font-family: 'Source Sans Pro', sans-serif;
}
#getdiploma h2 {
font-size: 62px;
margin-top: 1em;
margin-bottom: 1em;
font-family: 'Source Sans Pro', sans-serif;
}
#getdiploma a {
border-radius: 50px;
font-size: 18px;
background-color: #04AA6D;
padding: 17px 55px
}
@media screen and (max-width: 680px) {
#w3_cert_badge {
width: 150px;
right: 2%;
}
}
@media screen and (max-width: 1155px) {
#w3_cert_arrow {
display: none;
}
}
@media screen and (max-width: 992px) {
#w3_cert_arrow {
display: block;
}
.w3csstut {
height: auto;
}
}
@media screen and (min-width: 1844px) {
#w3_cert_badge {
width: 190px;
right: 2%;
}
#w3_cert_arrow {
right: 169px;
}
}
@media screen and (max-width: 800px) {
#w3_cert_arrow {
display: none;
}
#getdiploma h2 {
font-size: 55px;
}
}
@media screen and (max-width: 600px) {
#w3_cert_badge {
top: -35px;
right: 10px;
width: 100px;
}
#howto_padding {
padding: 2px 24px 90px 24px
}
}
@media screen and (max-width: 500px) {
#getdiploma p {
font-size: 40px;
}
#getdiploma a {
width: 100%;
}
}
.tutbuttons a{
text-decoration:none;
}
.tutbuttons a div {
opacity:0.9;
}
.tutbuttons a:hover div {
opacity:1;
}
.ws-yellow-hover:hover {
background-color:#fff080!important;
color:black!important;
}
#google_translate_element {
z-index:7!important;
}
@media screen and (max-width: 1152px) {
.ribbon-topnav {
display: none !important;
}
}
@media screen and (max-width: 860px) {
.ws-hide-860 {
display: none !important;
}
}
@media screen and (max-width: 1080px) {
.ws-hide-1080 {
display: none !important;
}
}
@media screen and (max-width: 1200px) {
.ws-hide-1200 {
display: none !important;
}
}
@media screen and (max-width: 1200px) {
.ws-hide-1200 {
display: none !important;
}
}
@media screen and (max-width: 1250px) {
.ws-hide-1250 {
display: none !important;
}
}
.hover-yellow:hover {
background-color: #fff080 !important;
color: black !important;
}
.hover-yellow:hover {
background-color:#fff080!important;
color:black!important;
}
#bgcodeimg {
background: #282A35 url("spaces/files/priscilla-du-preez-XkKCui44iM0-unsplash.921aa0c0.jpg") no-repeat fixed center;
}
.fa-logox:hover {
background-color: #282A35!important;
color: #059862!important;
}
/* The actual timeline (the vertical ruler) */
.timeline {
position: relative;
margin: 0 auto;
}
/* The actual timeline (the vertical ruler) */
.timeline::after {
content: '';
position: absolute;
width: 6px;
background-color: white;
top: -40px;
bottom: -45px;
left: 50%;
margin-left: -3px;
}
/* Container around content */
.container {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
maxrgin-bottom:120px;
}
/* The circles on the timeline */
.container::after {
content: '';
position: absolute;
width: 25px;
height: 25px;
right: -13px;
background-color: white;
border: 4px solid white;
top: 18px;
border-radius: 50%;
z-index: 1;
}
/* Place the container to the left */
.left {
left: 0;
}
/* Place the container to the right */
.right {
left: 50%;
position:absolute;
}
/* Add arrows to the left container (pointing right) */
.left::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
right: 30px;
border: medium solid white;
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent white;
}
/* Add arrows to the right container (pointing left) */
.right::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
left: 30px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Fix the circle for containers on the right side */
.right::after {
left: -12px;
}
/* The actual content */
.content {
padding: 20px 30px;
background-color: white;
position: relative;
border-radius: 6px;
height:245px;
}
.h2content {
text-align:center;
font-size: 84px;
font-weight: 500;
padding-top:26px;
}
.textdescmob {
opacity:0.9;
padding:20px;
padding-left:30px;margin-left:-30px;margin-bottom:20px;margin-right:-30px;margin-top:-20px;font-size:40px;font-weight:500
}
.jscont h2{
text-align:center;font-size: 65px;font-weight: 500;padding-top:26px;
}
@media screen and (min-width: 1095px) {
.content {
height:215px;
}
.h2content {
padding-top:14px;
}
}
@media screen and (max-width: 1161px) {
.jscont {
height:245px;
}
.jscont h2 {
padding-top:37px;
}
}
.textdescmob {
border-radius:5px 5px 0 0;
}
@media screen and (max-width: 900px) {
.ws-hide-900 {
display:none;
}
.right .ws-grey,.right .ws-light-pink {
background-color:white !important;
}
.textsmallerscreens {
font-size:45px!important
}
}
@media screen and (min-width: 901px) {
.descmob {
display:none;
}
}
@media screen and (max-width: 900px) {
/* Place the timelime to the left */
.timeline::after {
left: 28px;
}
/* Full-width containers */
.container {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}
/* Make sure that all arrows are pointing leftwards */
.container::before {
left: 60px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Make sure all circles are at the same spot */
.left::after, .right::after {
left: 15px;
}
/* Make all right containers behave like the left ones */
.right {
left: 0%;
position:relative;
}
.content,.jscont {
height: auto;
}
}
.mylink{
text-decoration:none;
}
.mylink .content {
opacity:0.9;
}
.mylink:hover .content,.textdescmob:hover {
opacity:1;
}
.vl {
border-left: 7px solid white;
height: 72px;
position: absolute;
left: 25%;
margin-left: -3px;
top: 509px;
}
</style>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script data-cfasync="false" type="text/javascript">
window.snigelPubConf = {
"adengine": {
"activeAdUnits": []
}
}
</script>
<script async data-cfasync="false" src="../cdn.snigelweb.com/adengine/w3schools.com/loader.js" type="text/javascript"></script>
<script src="lib/my-learning21cd.js?v=1.0.9"></script>
</head>
<body style="position:relative;min-height:100%;font-family: 'Source Sans Pro', sans-serif;" class="ws-black">
<div style='display:none;position:absolute;z-index:6;top:75px;right:0;height:75px;padding-top:22px;padding-right:20px;padding-left:20px;background-color:#04AA6D;' id='googleSearch'><div class='gcse-search'></div></div>
<div style='display:none;position:absolute;z-index:5;top:75px;right:0;height:75px;padding-right:15px;background-color:#04AA6D;text-align:right;padding-top:25px;' id='google_translate_element'></div>
<div class="w3-bar xw3-card-2 notranslate" style="padding-left:12px;padding-right:16px;">
<a href="index.html" class="w3-bar-item w3-button w3-hover-none w3-left w3-padding-16" title="Home" style="width:77px;">
<i class="fa fa-logo" style="position:relative;color:#04AA6D;font-size:42px!important;"></i>
</a>
<a class="w3-bar-item w3-button w3-hide-small barex bar-item-hover w3-padding-24" href="javascript:void(0)" onclick="w3_open_nav('tutorials')" id="navbtn_tutorials" title="Tutorials" style="width:116px">Tutorials <i class='fa fa-caret-down'></i><i class='fa fa-caret-up' style="display:none"></i></a>
<a class="w3-bar-item w3-button w3-hide-small barex bar-item-hover w3-padding-24" href="javascript:void(0)" onclick="w3_open_nav('references')" id="navbtn_references" title="References" style="width:132px">References <i class='fa fa-caret-down'></i><i class='fa fa-caret-up' style="display:none"></i></a>
<a class="w3-bar-item w3-button w3-hide-small barex bar-item-hover w3-padding-24 ws-hide-800" href="javascript:void(0)" onclick="w3_open_nav('exercises')" id="navbtn_exercises" title="Exercises" style="width:118px">Exercises <i class='fa fa-caret-down' style="font-size:20px;"></i><i class='fa fa-caret-up' style="display:none"></i></a>
<a class="w3-bar-item w3-button w3-hide-medium bar-item-hover w3-hide-small w3-padding-24 barex ws-hide-1200" href="videos/index.html" title="Video Tutorials" onclick="ga('send', 'event', 'Videos' , 'fromTopnavDefault')">Videos</a>
<a class="w3-bar-item w3-button bar-item-hover w3-padding-24" href="javascript:void(0)" onclick="w3_open()" id="navbtn_menu" title="Menu" style="width:93px">Menu <i class='fa fa-caret-down'></i><i class='fa fa-caret-up' style="display:none"></i></a>
<div id="loginactioncontainer" class="w3-right w3-padding-16">
<div id="mypagediv"></div>
<!-- <button id="w3loginbtn" style="border:none;display:none;cursor:pointer" class="login w3-right w3-hover-greener" onclick='w3_open_nav("login")'>LOG IN</button>-->
<a id="w3loginbtn" class="w3-bar-item w3-btn w3-right" href="../profile.w3schools.com/log-ina0ec.html?redirect_url=https%3A%2F%2Fmy-learning.w3schools.com" target="_self">Log in</a>
</div>
<div class="w3-right w3-padding-16">
<a class="w3-bar-item w3-button bar-item-hover w3-right w3-hide-medium barex" style="width:132px;border-radius:25px;margin-right:8px;" href="../courses.w3schools.com/index.html" target="_blank" id="cert_navbtn" onclick="ga('send', 'event', 'Courses' , 'Clicked on courses in Default top navigation');" title="Courses">Paid Courses</a>
<a class="w3-bar-item w3-button bar-item-hover w3-right w3-hide-small barex ws-pink" style="border-radius: 25px; margin-right: 8px;" href="spaces/index.html" target="_blank" onclick="ga('send', 'event', 'spacesFromTopnavDefault', 'click');" title="Get Your Own Website With W3shools Spaces">Website <span class="ribbon-topnav ws-hide-1250">NEW</span></a>
<a class="w3-bar-item w3-button bar-item-hover w3-right ws-hide-1080 w3-hide-small barex topnavmain_pro" style="border-radius: 25px; margin-right: 8px;" href="pro/index.html" target="_blank" onclick="ga('send', 'event', 'Pro', 'fromTopnavDefault');" title="Go pro and unlock powerful features">Pro <span class="ribbon-topnav ws-hide-1250">NEW</span></a>
</div>
<div class="w3-right w3-padding-16">
<!--<a class="w3-bar-item w3-button bar-icon-hover w3-right w3-hover-white hidesm" href="javascript:void(0)" onclick="w3_open()" title="Menu"><i class='fa'></i></a>
-->
<a class="w3-bar-item w3-button bar-icon-hover w3-right" href="javascript:void(0)" style="padding-left:12px;padding-right:12px;margin-right:8px" onclick="gSearch(this)" title='Search W3Schools' id="nav_search_btn"><i class='fa'></i></a>
<a class="w3-bar-item w3-button bar-icon-hover w3-right" href="javascript:void(0)" style="padding-left:12px;padding-right:12px" onclick="gTra(this)" title='Translate W3Schools' id="nav_translate_btn"><i class='fa'></i></a>
<!--<a class="w3-bar-item w3-button bar-icon-hover w3-right w3-hide-small" style="padding-left:12px;padding-right:12px" href="javascript:void(0)" onclick="changecodetheme(this)" title='Toggle Dark Code'><i class='fa'></i></a>-->
</div>
</div>
<div id='myAccordion' class="w3-card-2 w3-center w3-hide-large" style="display:none;cursor:default;background-color:#E7E9EB;color:black!important;z-index:99">
<a href="javascript:void(0)" onclick="w3_close()" class="w3-button w3-xxlarge w3-right">×</a><br>
<div class="w3-container w3-padding-32">
<a class="w3-button w3-block" style="font-size:22px;" onclick="open_xs_menu('tutorials');" href="javascript:void(0);">Tutorials <i class='fa fa-caret-down'></i></a>
<div id="sectionxs_tutorials" class="w3-left-align w3-show" style="background-color:#282A35;color:white;"></div>
<a class="w3-button w3-block" style="font-size:22px;" onclick="open_xs_menu('references')" href="javascript:void(0);">References <i class='fa fa-caret-down'></i></a>
<div id="sectionxs_references" class="w3-left-align w3-show" style="background-color:#282A35;color:white;"></div>
<a class="w3-button w3-block" style="font-size:22px;" onclick="open_xs_menu('exercises')" href="javascript:void(0);">Exercises <i class='fa fa-caret-down'></i></a>
<div id="sectionxs_exercises" class="w3-left-align w3-show" style="background-color:#282A35;color:white;"></div>
<a class="w3-button w3-block" style="font-size:22px;" href="../courses.w3schools.com/index.html" target="_blank">Paid Courses</a>
<a class="w3-button w3-block" style="font-size:22px;" href="spaces/index.html" target="_blank" onclick="ga('send', 'event', 'spacesFromTopnavDefault', 'click');" title="Get Your Own Website With W3shools Spaces">Spaces</a>
<a class="w3-button w3-block" style="font-size:22px;" target="_blank" href="videos/index.html" onclick="ga('send', 'event', 'Videos' , 'fromTopnavDefault')" title="Video Tutorials">Videos</a>
<a class="w3-button w3-block" style="font-size:22px;" href="../shop.w3schools.com/index.html" target="_blank">Shop</a>
<a class="w3-button w3-block" style="font-size:22px;" href="pro/index.html">Pro</a>
<!-- <a class="w3-button w3-block w3-round bar-item-hover" style="font-size:22px;background-color:#04AA6D;color:white;" href="https://profile.w3schools.com/log-in?redirect_url=https%3A%2F%2Fmy-learning.w3schools.com" target="_blank">Log in</a>
-->
</div>
</div>
<nav id="nav_tutorials" class="w3-hide-small navex" style="position:absolute;background-color:#282A35;color:white;padding-bottom:60px;">
<div class="w3-content" style="max-width:1100px;font-size:18px">
<span onclick="w3_close_nav('tutorials')" class="w3-button w3-xxxlarge w3-display-topright w3-hover-white ws-hide-860" style="padding-right:30px;padding-left:30px;">×</span><br>
<div class="w3-row-padding w3-bar-block">
<div class="w3-container" style="padding-left:13px">
<h2 style="color:#FFF4A3;"><b>Tutorials</b></h2>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">HTML and CSS</h3>
<a class="w3-bar-item w3-button" href="html/default.html">Learn HTML</a>
<a class="w3-bar-item w3-button" href="css/default.html">Learn CSS</a>
<a class="w3-bar-item w3-button" href="css/css_rwd_intro.html" title="Responsive Web Design">Learn RWD</a>
<a class="w3-bar-item w3-button" href="bootstrap/bootstrap_ver.html">Learn Bootstrap</a>
<a class="w3-bar-item w3-button" href="w3css/default.html">Learn W3.CSS</a>
<a class="w3-bar-item w3-button" href="colors/default.html">Learn Colors</a>
<a class="w3-bar-item w3-button" href="icons/default.html">Learn Icons</a>
<a class="w3-bar-item w3-button" href="graphics/default.html">Learn Graphics</a>
<a class="w3-bar-item w3-button" href='graphics/svg_intro.html'>Learn SVG</a>
<a class="w3-bar-item w3-button" href='graphics/canvas_intro.html'>Learn Canvas</a>
<a class="w3-bar-item w3-button" href="howto/default.html">Learn How To</a>
<a class="w3-bar-item w3-button" href="sass/default.html">Learn Sass</a>
<div class="w3-hide-large w3-hide-small">
<h3 class="w3-margin-top">Data Analytics</h3>
<a class="w3-bar-item w3-button" href="ai/default.html">Learn AI</a>
<a class="w3-bar-item w3-button" href="python/python_ml_getting_started.html">Learn Machine Learning</a>
<a class="w3-bar-item w3-button" href="datascience/default.html">Learn Data Science</a>
<a class="w3-bar-item w3-button" href="python/numpy/default.html">Learn NumPy</a>
<a class="w3-bar-item w3-button" href="python/pandas/default.html">Learn Pandas</a>
<a class="w3-bar-item w3-button" href="python/scipy/index.html">Learn SciPy</a>
<a class="w3-bar-item w3-button" href="python/matplotlib_intro.html">Learn Matplotlib</a>
<a class="w3-bar-item w3-button" href="statistics/index.html">Learn Statistics</a>
<a class="w3-bar-item w3-button" href="excel/index.html">Learn Excel</a>
<a class="w3-bar-item w3-button" href="googlesheets/index.html">Learn Google Sheets</a>
<h3 class="w3-margin-top">XML Tutorials</h3>
<a class="w3-bar-item w3-button" href="xml/default.html">Learn XML</a>
<a class="w3-bar-item w3-button" href='xml/ajax_intro.html'>Learn XML AJAX</a>
<a class="w3-bar-item w3-button" href="xml/dom_intro.html">Learn XML DOM</a>
<a class="w3-bar-item w3-button" href='xml/xml_dtd_intro.html'>Learn XML DTD</a>
<a class="w3-bar-item w3-button" href='xml/schema_intro.html'>Learn XML Schema</a>
<a class="w3-bar-item w3-button" href="xml/xsl_intro.html">Learn XSLT</a>
<a class="w3-bar-item w3-button" href='xml/xpath_intro.html'>Learn XPath</a>
<a class="w3-bar-item w3-button" href='xml/xquery_intro.html'>Learn XQuery</a>
</div>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">JavaScript</h3>
<a class="w3-bar-item w3-button" href="js/default.html">Learn JavaScript</a>
<a class="w3-bar-item w3-button" href="jquery/default.html">Learn jQuery</a>
<a class="w3-bar-item w3-button" href="react/default.html">Learn React</a>
<a class="w3-bar-item w3-button" href="angular/default.html">Learn AngularJS</a>
<a class="w3-bar-item w3-button" href="js/js_json_intro.html">Learn JSON</a>
<a class="w3-bar-item w3-button" href="js/js_ajax_intro.html">Learn AJAX</a>
<a class="w3-bar-item w3-button" href="appml/default.html">Learn AppML</a>
<a class="w3-bar-item w3-button" href="w3js/default.html">Learn W3.JS</a>
<h3 class="w3-margin-top">Programming</h3>
<a class="w3-bar-item w3-button" href="python/default.html">Learn Python</a>
<a class="w3-bar-item w3-button" href="java/default.html">Learn Java</a>
<a class="w3-bar-item w3-button" href="c/index.html">Learn C</a>
<a class="w3-bar-item w3-button" href="cpp/default.html">Learn C++</a>
<a class="w3-bar-item w3-button" href="cs/index.html">Learn C#</a>
<a class="w3-bar-item w3-button" href="r/default.html">Learn R</a>
<a class="w3-bar-item w3-button" href="kotlin/index.html">Learn Kotlin</a>
<a class="w3-bar-item w3-button" href="go/index.html">Learn Go</a>
<a class="w3-bar-item w3-button" href="django/index.html">Learn Django</a>
<a class="w3-bar-item w3-button" href="typescript/index.html">Learn TypeScript</a>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">Server Side</h3>
<a class="w3-bar-item w3-button" href="sql/default.html">Learn SQL</a>
<a class="w3-bar-item w3-button" href="mysql/default.html">Learn MySQL</a>
<a class="w3-bar-item w3-button" href="php/default.html">Learn PHP</a>
<a class="w3-bar-item w3-button" href='asp/default.html'>Learn ASP</a>
<a class="w3-bar-item w3-button" href='nodejs/default.html'>Learn Node.js</a>
<a class="w3-bar-item w3-button" href='nodejs/nodejs_raspberrypi.html'>Learn Raspberry Pi</a>
<a class="w3-bar-item w3-button" href='git/default.html'>Learn Git</a>
<a class="w3-bar-item w3-button" href='aws/index.html'>Learn AWS Cloud</a>
<h3 class="w3-margin-top">Web Building</h3>
<a class="w3-bar-item w3-button" href="spaces/index.html" target="_blank" onclick="ga('send', 'event', 'spacesFromTutorialsAcc', 'click');" title="Get Your Own Website With W3shools Spaces">Create a Website <span class="ribbon-topnav ws-yellow">NEW</span></a>
<a class="w3-bar-item w3-button" href="where_to_start.html">Where To Start</a>
<a class="w3-bar-item w3-button" href="w3css/w3css_templates.html">Web Templates</a>
<a class="w3-bar-item w3-button" href="browsers/default.html">Web Statistics</a>
<a class="w3-bar-item w3-button" href="../courses.w3schools.com/index.html">Web Certificates</a>
<a class="w3-bar-item w3-button" href="whatis/default.html">Web Development</a>
<a class="w3-bar-item w3-button" href='tryit/default.html'>Code Editor</a>
<a class="w3-bar-item w3-button" href="typingspeed/default.html">Test Your Typing Speed</a>
<a class="w3-bar-item w3-button" href="codegame/index.html" target="_blank">Play a Code Game</a>
<a class="w3-bar-item w3-button" href="cybersecurity/index.html">Cyber Security</a>
<a class="w3-bar-item w3-button" href="accessibility/index.html">Accessibility</a>
</div>
<div class="w3-col l3 m6 w3-hide-medium">
<h3 class="w3-margin-top">Data Analytics</h3>
<a class="w3-bar-item w3-button" href="ai/default.html">Learn AI</a>
<a class="w3-bar-item w3-button" href="python/python_ml_getting_started.html">Learn Machine Learning</a>
<a class="w3-bar-item w3-button" href="datascience/default.html">Learn Data Science</a>
<a class="w3-bar-item w3-button" href="python/numpy/default.html">Learn NumPy</a>
<a class="w3-bar-item w3-button" href="python/pandas/default.html">Learn Pandas</a>
<a class="w3-bar-item w3-button" href="python/scipy/index.html">Learn SciPy</a>
<a class="w3-bar-item w3-button" href="python/matplotlib_intro.html">Learn Matplotlib</a>
<a class="w3-bar-item w3-button" href="statistics/index.html">Learn Statistics</a>
<a class="w3-bar-item w3-button" href="excel/index.html">Learn Excel</a>
<a class="w3-bar-item w3-button" href="googlesheets/index.html">Learn Google Sheets</a>
<h3 class="w3-margin-top">XML Tutorials</h3>
<a class="w3-bar-item w3-button" href="xml/default.html">Learn XML</a>
<a class="w3-bar-item w3-button" href='xml/ajax_intro.html'>Learn XML AJAX</a>
<a class="w3-bar-item w3-button" href="xml/dom_intro.html">Learn XML DOM</a>
<a class="w3-bar-item w3-button" href='xml/xml_dtd_intro.html'>Learn XML DTD</a>
<a class="w3-bar-item w3-button" href='xml/schema_intro.html'>Learn XML Schema</a>
<a class="w3-bar-item w3-button" href="xml/xsl_intro.html">Learn XSLT</a>
<a class="w3-bar-item w3-button" href='xml/xpath_intro.html'>Learn XPath</a>
<a class="w3-bar-item w3-button" href='xml/xquery_intro.html'>Learn XQuery</a>
</div>
</div>
</div>
<br class="hidesm">
</nav>
<nav id="nav_references" class="w3-hide-small navex" style="position:absolute;background-color:#282A35;color:white;padding-bottom:60px;">
<div class="w3-content" style="max-width:1100px;font-size:18px">
<span onclick="w3_close_nav('references')" class="w3-button w3-xxxlarge w3-display-topright w3-hover-white ws-hide-860" style="padding-right:30px;padding-left:30px;">×</span><br>
<div class="w3-row-padding w3-bar-block">
<div class="w3-container" style="padding-left:13px">
<h2 style="color:#FFF4A3;"><b>References</b></h2>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">HTML</h3>
<a class="w3-bar-item w3-button" href='tags/default.html'>HTML Tag Reference</a>
<a class="w3-bar-item w3-button" href='tags/ref_html_browsersupport.html'>HTML Browser Support</a>
<a class="w3-bar-item w3-button" href='tags/ref_eventattributes.html'>HTML Event Reference</a>
<a class="w3-bar-item w3-button" href='colors/default.html'>HTML Color Reference</a>
<a class="w3-bar-item w3-button" href='tags/ref_attributes.html'>HTML Attribute Reference</a>
<a class="w3-bar-item w3-button" href='tags/ref_canvas.html'>HTML Canvas Reference</a>
<a class="w3-bar-item w3-button" href='graphics/svg_reference.html'>HTML SVG Reference</a>
<a class="w3-bar-item w3-button" href='graphics/google_maps_reference.html'>Google Maps Reference</a>
<h3 class="w3-margin-top">CSS</h3>
<a class="w3-bar-item w3-button" href='cssref/default.html'>CSS Reference</a>
<a class="w3-bar-item w3-button" href='cssref/css3_browsersupport.html'>CSS Browser Support</a>
<a class="w3-bar-item w3-button" href='cssref/css_selectors.html'>CSS Selector Reference</a>
<a class="w3-bar-item w3-button" href='bootstrap/bootstrap_ref_all_classes.html'>Bootstrap 3 Reference</a>
<a class="w3-bar-item w3-button" href='bootstrap4/bootstrap_ref_all_classes.html'>Bootstrap 4 Reference</a>
<a class="w3-bar-item w3-button" href='w3css/w3css_references.html'>W3.CSS Reference</a>
<a class="w3-bar-item w3-button" href='icons/icons_reference.html'>Icon Reference</a>
<a class="w3-bar-item w3-button" href='sass/sass_functions_string.html'>Sass Reference</a>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">JavaScript</h3>
<a class="w3-bar-item w3-button" href='jsref/default.html'>JavaScript Reference</a>
<a class="w3-bar-item w3-button" href='jsref/default.html'>HTML DOM Reference</a>
<a class="w3-bar-item w3-button" href='jquery/jquery_ref_overview.html'>jQuery Reference</a>
<a class="w3-bar-item w3-button" href='angular/angular_ref_directives.html'>AngularJS Reference</a>
<a class="w3-bar-item w3-button" href="appml/appml_reference.html">AppML Reference</a>
<a class="w3-bar-item w3-button" href="w3js/w3js_references.html">W3.JS Reference</a>
<h3 class="w3-margin-top">Programming</h3>
<a class="w3-bar-item w3-button" href='python/python_reference.html'>Python Reference</a>
<a class="w3-bar-item w3-button" href='java/java_ref_keywords.html'>Java Reference</a>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">Server Side</h3>
<a class="w3-bar-item w3-button" href='sql/sql_ref_keywords.html'>SQL Reference</a>
<a class="w3-bar-item w3-button" href='mysql/mysql_ref_functions.html'>MySQL Reference</a>
<a class="w3-bar-item w3-button" href='php/php_ref_overview.html'>PHP Reference</a>
<a class="w3-bar-item w3-button" href='asp/asp_ref_response.html'>ASP Reference</a>
<h3 class="w3-margin-top">XML</h3>
<a class="w3-bar-item w3-button" href='xml/dom_nodetype.html'>XML DOM Reference</a>
<a class="w3-bar-item w3-button" href='xml/dom_http.html'>XML Http Reference</a>
<a class="w3-bar-item w3-button" href='xml/xsl_elementref.html'>XSLT Reference</a>
<a class="w3-bar-item w3-button" href='xml/schema_elements_ref.html'>XML Schema Reference</a>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top">Character Sets</h3>
<a class="w3-bar-item w3-button" href='charsets/default.html'>HTML Character Sets</a>
<a class="w3-bar-item w3-button" href='charsets/ref_html_ascii.html'>HTML ASCII</a>
<a class="w3-bar-item w3-button" href='charsets/ref_html_ansi.html'>HTML ANSI</a>
<a class="w3-bar-item w3-button" href='charsets/ref_html_ansi.html'>HTML Windows-1252</a>
<a class="w3-bar-item w3-button" href='charsets/ref_html_8859.html'>HTML ISO-8859-1</a>
<a class="w3-bar-item w3-button" href='charsets/ref_html_symbols.html'>HTML Symbols</a>
<a class="w3-bar-item w3-button" href='charsets/ref_html_utf8.html'>HTML UTF-8</a>
</div>
</div>
<br class="hidesm">
</div>
</nav>
<nav id="nav_exercises" class="w3-hide-small navex" style="position:absolute;background-color:#282A35;color:white;padding-bottom:60px;">
<div class="w3-content" style="max-width:1100px;font-size:18px">
<span onclick="w3_close_nav('exercises')" class="w3-button w3-xxxlarge w3-display-topright w3-hover-white ws-hide-860" style="padding-right:30px;padding-left:30px;">×</span><br>
<div class="w3-row-padding w3-bar-block">
<div class="w3-container" style="padding-left:13px">
<h2 style="color:#FFF4A3;"><b>Exercises and Quizzes</b></h2>
</div>
<div class="w3-col l3 m6">
<h3 class="w3-margin-top"><a class="ws-btn ws-yellow w3-hover-text-white" style="width:155px;font-size:21px" href="exercises/index.html">Exercises</a></h3>
<a class="w3-bar-item w3-button" href="html/html_exercises.html">HTML Exercises</a>
<a class="w3-bar-item w3-button" href="css/css_exercises.html">CSS Exercises</a>
<a class="w3-bar-item w3-button" href="js/js_exercises.html">JavaScript Exercises</a>
<a class="w3-bar-item w3-button" href="sql/sql_exercises.html">SQL Exercises</a>
<a class="w3-bar-item w3-button" href="mysql/mysql_exercises.html">MySQL Exercises</a>
<a class="w3-bar-item w3-button" href="php/php_exercises.html">PHP Exercises</a>
<a class="w3-bar-item w3-button" href="python/python_exercises.html">Python Exercises</a>