forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1281 lines (1067 loc) · 54.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>
<head>
<title>Git Tutorial Guestbook</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<style>
html,body,h1,h2,h3,h4 {font-family:"Lato", sans-serif}
.w3-tag {height:15px;width:15px;padding:0;margin-top:6px;cursor:pointer}
</style>
</head>
<body>
<!-- Content -->
<div class="w3-content" style="max-width:1920px;margin-top:40px;margin-bottom:40px">
<div class="w3-panel">
<h1><b>GIT TUTORIAL GUESTBOOK</b></h1>
</div>
<!-- Slideshow -->
<div class="w3-container">
<div class="w3-display-container">
<img src="img_guestbook_wall.jpg" alt="Image from Nicolas Dmítrichev via unsplash.com" style="width:100%">
<div class="w3-display-topleft w3-container w3-padding-32">
<span class="w3-white w3-padding-large w3-animate-bottom">Share your message with the community</span>
</div>
</div>
</div>
<!-- Grid -->
<div class="w3-row w3-container">
<div class="w3-center w3-padding-64">
<span class="w3-xlarge w3-bottombar w3-border-dark-grey w3-padding-16">What is This?</span>
</div>
<div class="w3-col l3 m6 w3-light-grey w3-container w3-padding-16">
<h3>Learn</h3>
<p>Learn how to use Git and GitHub from our <a href="https://www.w3schools.com/git/default.asp" title="w3schools.com Git Tutorial" target="_blank" class="w3-hover-text-green">Git Tutorial</a>.</p>
</div>
<div class="w3-col l3 m6 w3-grey w3-container w3-padding-16">
<h3>Change</h3>
<p>Fork and Clone this <a href="https://github.com/w3schools-test/w3schools-test.github.io" title="Guestbook Git Repository" target="_blank" class="w3-hover-text-green">GitHub repository</a>, to your local Git or GitHub account.</p>
</div>
<div class="w3-col l3 m6 w3-dark-grey w3-container w3-padding-16">
<h3>Collaborate</h3>
<p>Add a message, following the guidelines from the <a href="https://github.com/w3schools-test/w3schools-test.github.io" title="Guestbook Git Repository" target="_blank" class="w3-hover-text-green">README.md</a>.</p>
</div>
<div class="w3-col l3 m6 w3-black w3-container w3-padding-16">
<h3>Contribute</h3>
<p>Add a <a href="https://github.com/w3schools-test/w3schools-test.github.io/pulls" title="GitHub Pull Request" target="_blank" class="w3-hover-text-green">pull request</a>, and see if your change gets approved and added below!</p>
</div>
</div>
<!-- Grid -->
<div class="w3-row-padding" id="about">
<div class="w3-center w3-padding-64">
<span class="w3-xlarge w3-bottombar w3-border-dark-grey w3-padding-16">Leave A Message</span>
</div>
<!-- Insert your message below here -->
<div>
<h1>Many Thantks to w3schools for their tutorials </h1>
<h3>Greetings from Argentina</h3>
<p><i>January 20 2022</i></p>
</div>
<div class="w3-panel w3-leftbar" style='font-family: "Montserrat", sans-serif; background-color: darkseagreen;'>
<h2>Welcome All Joining to Programming World</h2>
<p class='w3-large'> Thanks to all w3schools staff.👏 It is done incredible, amazing job.👍<br/>
My wizard was, is and will be w3schools. It is easy, attractive in w3schools platform.<br/>
Well, I can not resist temptation to program.😉<br/><br/>
<i>Darius, 19.01.2022 Lithuania</i></p>
</div>
<div class="w3-panel w3-leftbar" style="background: #00FFFF; font-family: 'Trebuchet MS', sans-serif; color : #fff">
<p class="w3-xxlarge">
Hello World 😍<br>
"W3schools has really impacted so much in my tech journey - <em>Thank you</em>" <br>
</p>
<p style="color: #0f8a98;"><b>NVEGS, 18th Jan 2022</b></p>
</div>
<div class="w3-panel w3-leftbar w3-black">
<p class="w3-xlarge w3-serif"></p>
<i>“Success is not final, failure is not fatal: it is the courage to continue that counts.” – Winston Churchill</i><br>
<br>And so do I, now, have the courage to take baby steps towards learning new things, exploring new domains and working together to conquer things I thought I couldn't before!
<br><br><i>Happy to have started this journey of my own! :)</i></p>
<p><b><em>Ani14kay </em></b> { 17.01.2022 }</em></p>
</div>
<div class="w3-panel w3-leftbar w3-blue">
<p class="w3-xxlarge w3-monospace">Hello from Grenoble, France</p>
<p><i>Hello à mes camarades Data+ qui passeraient par là</i></p>
<p>AV, 17.01.2022</p>
</div>
<div class="w3-panel w3-leftbar w3-blue">
<p class="w3-xxlarge w3-monospace">Hi Everyone! I am from Bangladesh</p>
<p>Mister M 15.01.2022</p>
</div>
<div class="w3-panel w3-leftbar" style="background: #aaa;">
<h4 style="color: #d6297a;">Hello😍</h4>
<p style="font-style: italic; text-shadow: 2px 2px 10px #eee;">Thanks to w3schools for its great tutorials!</p>
<p style="color: #910d4a;">Sepideh, 10 Jan 2022</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Make it as simple as possible, but not simpler."</i></p>
<p>Albert Einstein</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xlarge w3-monospace">
<i>"I’ve learned a ton of useful skills from w3schools!"</i></p>
<p>Shawn, 16 Jan 2022</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-monospace">
<i>"I learned so many things from my school - W3Schools"</i></p>
<p>kushal 19.1.2022</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-monospace">
<i>"w3schools is best, providing amazing content"</i></p>
<p>kushal 11.1.2022</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-monospace">
<i>"w3s is helpful and amazing"</i></p>
<p>Risqi 9.1.2022</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-monospace">
<i>THAT'S AWESOME</i></p>
<p>Ptaxan 10/01/2022</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-monospace">
<i>"Thank you for your amazing job"</i></p>
<p>Marek 7.1.2022</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-monospace">
<i>"This tuturial is so great!"</i></p>
<p>yzhouxc, 29.12.2021</p>
</div>
<div class="w3-panel w3-leftbar w3-deep-purple">
<h1>Hello World</h1>
<br>
<p>gittersweet from Indonesia</p>
<p>25 December 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-green">
<h3>Hello World</h3>
<p>Thank you w3schools for your tutorials!</p>
<p>Peter | 24 Dec 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-blue">
<p class="w3-xxlarge w3-monospace">
<i>"Your are awesome W3school. You are my mentor."</i></p>
<p>Swalih t, 21.12.2021</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif">
<i>"Learning to code is hard, but it's harder without w3schools."</i></p>
<p>Ekoorits, 16.12.2021</p>
</div>
<div class="w3-panel w3-leftbar w3-black">
<h1>Sawasdee from Thailand</h1>
<p>Thank you! for awesome tutorial w3school you guys rock!!!</p>
<p>Pone, 14.Dec.21</p>
</div>
<div class="dcodingkid-repo w3-panel" style="background:linear-gradient(90deg, rgba(112,112,112,1) 0%, rgba(78,78,78,1) 47%, rgba(0,0,0,1) 100%); color: #000;">
<h1 class="w3-text-white">Hello, World!</h1>
<p class="w3-text-white">A big thank you w3schools for serving this platform and making our life lot more easier</p>
<p><em>DCodingKid, 13.12.2021</em></p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>I stole a style from India, but still want to say hello to everyone from Ukraine. Good mood everyone =)</i></p>
<p>Max from Kyiv</p>
<p>until the new year 11 days ...</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>Hello from INDIA. Thanks to w3schools for its amazing free git tutorial.</i></p>
<p>Abhay from INDIA</p>
<p>12 December, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-text-deep-purple"><i>Thank you w3schools! I'm learning GIT for the first time!!!</i></p>
<p class="w3-text-gray">David, 12,12,2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-text-deep-purple"><i>Very cool tutorial! Nice and comprehensive! Thanks! :)</i></p>
<p class="w3-text-gray">Martin, 12,01,2022</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-text-deep-purple"><i>Thank you w3schools for this great Git tutorials 👍!</i></p>
<p class="w3-text-gray">Dima, Kyiv, 09.12.2021</p>
</div>
<section style="background-color: #33A4FF;">
<article>
<h1>Bonjour de Paris!</h1>
<p>Myla, 08/12/2021</p>
</article>
</section>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Hola todos, saludos desde Cali, Colombia!</i> 😁</p>
<p>Learning a lot with w3school!!!</p>
<p>Jaime, 12/05/2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-blue">
<h3>Yo!</h3>
<p>It's me :D</p>
<p>Wojtek, Dec 02, 2021.</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>This is my very first contribution and pull request</i> 😁</p>
<p>Thanks w3schools</p>
<p>Amanda L, 12/02/2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>My very first contribution and pull request</i> 😁</p>
<p>Thanks w3schools</p>
<p>Eren Yeager, 11/29/2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-blue">
<h3>Hello Everyone!</h3>
<p>This line is my contribution.</p>
<p>Kean N | Nov 26, 2021.</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-blue">
<h3>Hello World!</h3>
<p>QuangNhatPro a.k.a QNP.</p>
<p>Thank W3school for my web developer career.</p>
<p>❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤</p>
<p>Don't give up just because it's hard.</p>
<p>Youngboiz si tình | Keep it up.</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-blue">
<h3>Hello W3schoolers!</h3>
<p>It's 11PM moutain time on Thanksgiving Day.</p>
<p>I'm learning Git and try to land my first job.</p>
<p>Thank W3schools so much for amazing content.</p>
<p>Happy Thanksgiving to everyone.</p>
<p>Thanh Pham | Nov 25, 2021.</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-green">
<h3>Hello</h3>
<p>This is my contribution to this project!</p>
<p>Gehmasse | Nov 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-green">
<h3>Hi</h3>
<p>This is ikkim's contribution to this project!</p>
<p>ikkim | Nov 2021</p>
</div>
<div class="w3-panel w3-round-large">
<h2>Hello</h2>
<p>Thanks for W3Schools</p>
<p>karim | Nov 14, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-blue">
<h3>Greetings all</h3>
<p>From code-blind to be able to read html, css, js, python, c++ etc thanks to W3Schools</p>
<p>Thank you W3Schools</p>
<p>For those who are new at coding, W3Schools is the perfect first stop. Cheers!</p>
<p>Oby L Jr. | Nov 11, 2021.</p>
</div>
<div class="w3-panel w3-round-large" style="background: linear-gradient(90deg, rgba(0,255,201,0.3533788515406162) 0%, rgba(23,255,116,0.9220063025210083) 35%, rgba(3,126,71,1) 100%);">
<h2>Hello everybody!</h2>
<p>Thank you w3schools!</p>
<p>Gery from Indonesia | Nov 11, 2021.</p>
</div>
<div class="w3-panel w3-round-large" style="background: linear-gradient(90deg, rgba(0,255,201,0.3533788515406162) 0%, rgba(23,255,116,0.9220063025210083) 35%, rgba(3,126,71,1) 100%);">
<h2>Hello All</h2>
<p>Always keep learning.</p>
<p>SSSS | Nov 05, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-blue">
<h2>Hello everybody!</h2>
<p>It is never too late to learn something new. ✨</p>
<p>You can do this!, happy learning. 🎓 📚</p>
<i>Thanks w3Schools for your great work, we appreciate it a lot. 😍</i>
<p>Artmen from Mexico | Nov 08, 2021.</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-green">
<h3>Hello everyone!</h3>
<p>Thanks for W3Schools.</p>
<p>Victor | 6 nov 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-red">
<h3>Thank you W3Schools!</h3>
<p>Thank you for being such a great platform to learn from. I have started web development on the Beginning of September 2021 and after half a year with tons of hard work I can see it it paying off!</p>
<p>Davza | 5 Jan 2022</p>
</div>
<!-- Edited for Git Tutorial -->
<div class="w3-panel w3-leftbar w3-hover-shadow w3-sand w3-hover-text-green">
<h3>Hi everyone</h3>
<p>Thanks for W3Schools.</p>
<p>Mez | Summer 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<h1> Hello All 💗</h1>
<p>Welcomes You to W3SCHOOL Learning</p>
<p>Eden Lin!!! | Oct 25, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<h1> Hello, World!;</h1>
<p>Best learning website in my opinion</p>
<p>pinguxx28 | Nov 14, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<h1> Hello All 💗</h1>
<p>Welcomes You to W3SCHOOL Learning</p>
<p>Vinoth Kumar M | Oct 24, 2021</p>
</div>
<div style="background-color: #00FFFF; font-family: cursive;" class="w3-panel w3-leftbar">
<h1><b>Hello from Kyiv, Ukraine.</b></h1>
<p>A lot of THANKS for w3schools</p>
<h2>🎃 Happy Helloween</h2>
<p>Oleksandr Poliukh (🐝 BeeCamper ⛺) | Oct 23, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>W3School is the best!<br>Freddy K. | Oct 25, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>Lets go! My first Pull Request</p>
<p>Hopefully it gets accepted</p>
<p>Unit 02 | Oct 20, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>One of the best tutorial, i'm changing my career to IT sphere and i feel very excited, like i was born for it, i'm 30, thinking it's never too late. Wish me luck :)</p>
<p>Elvin | Oct 12, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>Git didn't make sense until I met w3school tutorial. Now I have got it all. Thank you so much.</i></p>
<p>Michael Jordan, from Tanzania.</p>
<p>October 19, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>"Never give up; Keep on."</i></p>
<p>Mohammad Ahmadian, from the Earth.</p>
<p>October 14, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Sheeeeeeesh w3schools</i></p>
<p>Hope this pull will be accepted</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>Thanks for the great tools and exceptional support. At age 67, you make it easy to still learn new things from w3schools!</p>
<p>Bruce | Oct 9, 2021</p>
</div>
<section style="background-color: #7ca4b8;">
<article>
<h1>Hello from Angola 💗</h1>
<p>I just want to say thanks <a href="https://www.w3schools.com/default.asp">w3school</a> for such a great content.</p>
<p>Hecroesmo | 12/10/2021</p>
</article>
</section>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Greetings from Chicago! Thanks for the tutorial."</i></p>
<p>Harrison | October 9, 2021</p>
</div>
<div>
<pre style="background-color: #222;color: chartreuse;font-size: 16px;font-family: cursive;">
😍Hello World 🙏 of GIT.
It's great to be learning a new technology.
I have previous experience with centralized version control systems, namely Perforce and SVN.
But GIT is exciting. Happy Learning!👍
----------------------------------------
Atul | 07 Oct 2021 | Patna, Bihar, India
</pre>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Greetings from Istanbul, was a good tutorial thanks for your effort."</i></p>
<p>yusuf | Sep 23, 2021</p>
</div>
<div>
<p class="w3-xlarge w3-serif">
<i>"The education you provide makes the world a better place"</i></p>
<p>Wong | Oct 3, 2021 | Kuala Lumpur, Malaysia</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Greetings from Istanbul, was a good tutorial thanks for your effort."</i></p>
<p>yusuf | Sep 23, 2021</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<b><pre>Gracias por el tutorial. Muy útil. </pre></b>
<i>Héctor | Sep 27, 2021</i>
</div>
<div class="w3-panel w3-card-4 w3-sand">
<p>W3Schools, You are the best! Thank You!</p>
<p>From Russia with love!</p>
</div>
<div class="w3-panel w3-border w3-orange w3-hover-border-red w3-hover-shadow ">
<b>
<pre class="w3-xlarge">This is not happening to you, This is happening for you 💙 </pre>
<pre class="w3-xlarge">Thanks for providing such a good platform.</pre>
<pre class="w3-xlarge">W3school provides a fantastic platform where I can learn how to program. </pre>
</b>
<i>Vansh Sharma | 23 September 2021</i>
</div>
<div class="wedo" style="background-color: black; color: cyan;">
<h1>Hi, guys</h1>
<p>I Would Like To Say islame is not a terrorism</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<b><pre>Hi guys! Cheers!!</pre></b>
<i>Rahim | Sep 27, 2021</i>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<b><pre>Greetings from my local git repo bros. </pre></b>
<i>ibrahim | Sep 15, 2021</i>
</div>
<div style="display:inline-block; padding-left: 7px; padding-right: 7px; padding-bottom: 4px; border:1px solid red; border-radius: 5px;border-left: 5px solid green; font-family: cursive; font-size: 21px; background-color: rgba(yellow, 0.9); color: darkslategrey; ">
<b><pre>One last game, one more try..... So it goes... :)</pre></b>
<i>Loke_N</i>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Hello everyone. This is my pull request, yo!</i></p>
<p>supermike from russia</p>
</div>
<div>
<p class="w3-xlarge w3-serif"><i>"Thank you W3Schools."</i></p>
<p>TAWATCHAI UDOMPOL</p>
</div>
<div class="w3-panel" style="background: linear-gradient(to bottom right,#d5d80c,#1036dd, red);position:relative">
<div style="position:absolute;left: 0px;top: 0px;bottom: 0px;width: 6px;background: linear-gradient(to bottom, rgb(238, 255, 0),rgb(4, 0, 255),rgb(212, 35, 35));"></div>
<p class="w3-xlarge w3-serif" style="color:white;margin-top: 50px;">IT has a great documentation ,no need to see the video lecture after reading through this documnetation</p>
</br>
<i>Dhruv Tiwari</i>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Amazing tutorial, Thanks W3schools</p>
<p>Abdul Motaleb From Bangladesh</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Hi !!! I am Saion Gupta. I am the founder of 10xCoderKids. I aspire to become 10xCoder and get to learn a lot from w3schools. I have a youtube channel where I post coding tutorials regularly.</i></p>
<p><b>Saion Gupta</b></p>
</div>
<div style="padding: 10px 20px; background-color: #0093dd; color:#fff; box-shadow:0 1px 2px #555;">
<em>"Live an object-oriented life!"</em> ~
Tugbeh Emmanuel <strong>(@2gbeh)</strong>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"W3Schools, muito obrigado pelo tutorial sobre Git/GitHub, aprendi muito!"</i></p>
<p>José Lucas from Brazil</p>
</div>
<div style="background-color: blue; font-family: cursive;" class="w3-panel w3-leftbar">
<h2><b>Hello Everyone</b></h1>
<p>A lot of THANKS for w3schools</p>
<p>glozbeig | Nov 03, 2021</p>
</div>
<div class="w3-panel w3-xlarge w3-leftbar w3-yellow">
<p>It's better to light a candle than to curse the darkness.</p>
<p><em>Confucio</em></p>
</div>
<div>
<p class="w3-xlarge w3-serif"><i>"Thank you <b>W3Schools git tutorials</b>."</i></p>
<p>INDIRA BOORLA</p>
</div>
<div>
<p class="w3-xlarge w3-serif"><i>"Are you passionate about learning git. Checkout <b>W3Schools git tutorials</b>."</i></p>
<p>PRIYANK KHANNA</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Thank you W3Schools, you are my favourite"</i></p>
<p>mehmet yilmaz</p>
</div>
<div class="w3-panel w3-leftbar w3-light-green">
<p class="w3-xlarge w3-serif"><i>"You are the main actor in your life.Try the best in your life."</i></p>
<p>Hein Htet</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Thank you W3Schools for Git tutorial. </i></p>
<p>Martino</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Thanks for the Tutorials w3schools"</i></p>
<p>Guy with potential</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>We're living in a world where no one's innocent, but at least we try...</i></p>
<p>Unknown</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"It's been great and rewarding working with w3school. Your tutorials have been so helpful"</i></p>
<p>Onyema</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Learning Git is fun"</i></p>
<p>K-pi</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>This is my first fork. If you're reading this, don't give up. I only have this to say.</i></p>
<p>FacuA0</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey" style="background: linear-gradient(to bottom left, #ff9a9e , #fad0c4);position:relative">
<p class="w3-xlarge Helvetica"><b>gogogo ahead again</b></p>
<p style="font-family:cursive">MinhThanh</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey" style="background: linear-gradient(to bottom left, #ff9a9e , #fad0c4);position:relative">
<p class="w3-xlarge Helvetica"><b>Smile. Not for anyone else, but for yourself.</b><br>Stay Safe and Healthy :)</p>
<p style="font-family:cursive">-Gaurav Garg</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Thanks for all the tutorials for me learning git! :)"</i></p>
<p>khangdovan</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Thanks for all the tutorials! :)"</i></p>
<p>Agustinms</p>
</div>
<div class="w3-panel w3-lefbar w3-light-grey">
<p class="w3-xlarge w3-serif"><b>Sky</b> is the <b>limit</b></p>
<p>Hafiz</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>KELOKEEEE</i></p>
<p>KouD</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Wow keep up the good work guys! Thanks for everything."</i></p>
<p>Akeem</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Thank You w3schools"</i></p>
<p>khunsai</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Let's make this world better guys"</i></p>
<p>Tanjona R.</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"I learned so much things thanks to 'w3schools'"</i></p>
<p>Don T</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Thank You w3schools for the knowledge"</i></p>
<p>Tomson</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Thank You w3schools"</i></p>
<p>ssakib4050</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Muchas gracias w3schools"</i></p>
<p>Isabel From Spain</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Thank you, [email protected] for your many years friendly entry point to new technologies and ideas!</i></p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Comfortable t-shirt"</i></p>
<p>MC Igu</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><q>Thank you W3 Schools</q></p>
<p>R. Ali</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><q>Challenges are what make life interesting and overcoming them is what makes life meaningful.</q></p>
<p>Joshua J. Marine</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><q>Headache or not, I'm gonna do this! 😎</q></p>
<p>theKomer</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"The Future Is Now, <del>Old Man</del> Everybody"</i></p>
<p>lleks</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"The ability to write clean, useful code coupled with being able to work collaboratively in a team will open opportunities for one across borders in today's digital world."</i></p>
<p>Ugogineering</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Let's sit down and learn coding"</i></p>
<p>Khai Hoan Pham</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><strong>"... <br>For whatever we lose (like a you or a me)<br>it's always ourselves we find in the sea"</strong></p>
<p>E. E. Cummings</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>Thank you W3Schools team for this tutorial ,I love your website , it is the best ,and hello from Morocco to all coders around the world</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Hello World!"</i></p>
<p>Roman Yusupov</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Arise,awake and don't stop until the goal is reached."</i></p>
<p>Swami Vivekananda</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>“Coding is the language of the future, and every girl should learn it. As I've learned from watching girls grow and learn in our classrooms, coding is fun, collaborative and creative.”
</i></p>
<p> Reshma Saujani</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Make it as simple as possible, but not simpler."</i></p>
<p>Albert Einstein</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"And so the geek inherited the earth."</i></p>
<p> Edward Snowden</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Don't let that time go wasted"</i></p>
<p>Vaishnav Shyam</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Why do people look for problems where there aren't any"</i></p>
<p>SiXeD</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>"Hacerlo simple es posible, pero no más simple."</i></p>
<p> Albert Einstein</p>
<p>Desde España</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Go Beyond Yourself."</i></p>
<p>Hossain</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Chaque homme doit inventer son chemin."</i></p>
<p>Jean-Paul Sartre</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"If I can do this, then there's hope for everyone."</i></p>
<p>Stu1902</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Talk is cheap. Show me the code."</i></p>
<p>Linus Torvalds</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"I Got 99 Problems, But Writing Code Ain’t One."</i></p>
<p>Unknown</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>" 1.Make it work, 2.Make it right, 3.Make it fast. "</i></p>
<p>Kent Beck</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"SENAI Taguatinga Curso de JAVA turma QUA.209.019"</i></p>
<p>Luiz Felipe from Brazil</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Life itself is hard, but we got to find a way to navigate"</i></p>
<p>passyEche</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Love is the will to extend one's self for the purpose of nurturing one's own or another's spiritual growth. We do not have to love. We choose to love."</i></p>
<p>M. Scott Peck</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"I'm not afraid of falling, because I'm born to rise.</i></p>
<p>Kushang Shah</p>
</div>
<p> Hello its me albertojmarun </p>
<p> Hello, I'm come from VietNam </p>
<p>Greetings from harrydev</p>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Don't wish it EASIER, Wish you were BETTER."</i></p>
<p>Jim Rohn</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"I am the ultimate hide and seek champion."</i></p>
<p><code>;</code>semicolon</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"All we have to decide is what to do with the time that is given to us."</i></p>
<p>Gandalf</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Thanks for sharing your knowledge with us!</p>
<p>Gabit from Argentina</p>
</div>
<div>
<p>In my small journey through life, I discovered that the fear of failure has kept a lot of persons form starting. This as little as it may seems is a major barrier to greatness and success.</p>
<p>As a begining programmer many have told me that programming is for genuises, but i keep motivating myself daily with a quote that says;
<blockquote> "Nothing is impossible to a man that believes"</blockquote>
<blockquote>"You can achieve anything you set your heart to if your can discipline yourself to pay the price for it"</blockquote>
</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Thanks for your great tutorials that help me a lot!</p>
<p>Souleymane from France</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Great things are done by a series of small things brought together</p>
<p>Hari From India</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>Your courses are soooo amazing. Can you make a tutorial on data structures and algorithms?</p>
<p>Michael from Nigeria</p>
<p class="w3-xlarge w3-serif">Thanks a lot W3Schools SG from India</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">I am learning from W3Schools, and they are great. Thanks for that. </p>
<blockquote>Never Settle</blockquote>
<p>Harsh From India</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p>Muchas gracias </p>
<p>Isabel from Spain</p>
<p class="w3-xlarge w3-serif">Thanks a lot W3Schools SG from India</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">I'm micun, learning git from W3Schools.</p>
<blockquote>Keep going.</blockquote>
<p>With love from Croatia</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">These tutorials are the best, infinite thanks W3schools' team</p>
<p>J.Seb From Chile</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"whats good homeboy"</i></p>
<p>Emperor Palpatine</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Hi, I started my tech journey with w3schools and it's been a wondeful, exciting experience. </p>
<p>Thanks for all you do at w3schools</p>
<p>Hengage From Nigeria</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">completing W3Schools Git tutorial</p>
<p>Yinghan from Singapore</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Thanks W3Schools for your efforts. I loved the learning experience.</p>
<p>Muhamamd Nabeel From Egypt</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Thanks for making a complex topic a whole lot easier to understand!! The w3schools team is awesome! </p>
</div>
<div class="w3-panel" style="background: linear-gradient(to right,#D80C5E,#600BB4);position:relative">
<div style="position:absolute;left: 0px;top: 0px;bottom: 0px;width: 6px;background: linear-gradient(to bottom, orangered,yellow,skyblue);"></div>
<div style="position:relative;">
<div style="border: 1px solid black;position: absolute;width: 50px;height: 50px;top:5px;left:20px;background: rgba(0,0,0,0.5)"></div>
<div style="border: 1px solid black;position: absolute;width: 50px;height: 50px;top:30px;left:50px;;background: rgba(0,0,0,0.4)"></div>
<div style="border-style: solid hidden hidden hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 52px;top: 13px;"></div>
<div style="border-style: hidden hidden solid hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 27px;top: 33px"></div>
<div style="border-style: solid hidden hidden hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 4px;top: 14px"></div>
<div style="border-style: hidden hidden solid hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 78px;top: 33px"></div>
</div>
<p class="w3-xlarge w3-serif" style="color:white;margin-top: 80px;font-style: italic">La novedades, cambian el ambiente de trabajo y da lugar a nuevas oportunidades.</p>
<p style="color:white;font-style: italic;">Miguel desde Perú</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Thanks for helpful tutorials. Also thanks for adding Kotlin series :)</p>
<p>Abhay</p>
</div>
<div class="w3-panel w3-leftbar w3-light-green">
<p class="w3-xlarge w3-serif"><i>"Thank you for good knowledge, I'm glad to have such a good website."</i></p>
<p>Eigkivz</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">pleasant experience with w3school</p>
<p>Sashish</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey" style="background-color: #222 !important;">
<p class="w3-xlarge w3-serif" style="filter: url(#flames); font-weight: bold; color: #eaeaea;">Thank you w3s for this course and the other ones as well! You guys are changing a lot of people's life 😄</p>
<p style="color: #eee">Daniel M. from Brazil</p>
<svg height="0" width="0" >
<filter id="flames">
<feflood flood-color="#aa4400" result="COLOR"></feflood>
<feturbulence seed="1" numOctaves="4" baseFrequency="0.08" result="NOISE_MAP">
<animate attributeName="baseFrequency" values="0.08; 0.05; 0.08" dur="30s" repeatCount="indefinite"/>
</feturbulence>
<fegaussianblur stdDeviation="0.5" in="SourceAlpha" result="BLUR_TEXT"/>
<fedisplacementmap in="BLUR_TEXT" in2="NOISE_MAP" xChannelSelector="R" yChannelSelector="R" scale="15" result="BLACK_FLAMES"/>
<fecomposite in="COLOR" in2="BLACK_FLAMES" operator="in" result="COLORED_FLAMES"/>
<femerge>
<femergenode in="COLORED_FLAMES"></femergenode>
<femergenode in="SourceGraphic"></femergenode>
</femerge>
</filter>
</svg>
</div>
<div class="w3-panel" style="background: linear-gradient(to bottom right,#d5d80c,#1036dd, red);position:relative">
<div style="position:absolute;left: 0px;top: 0px;bottom: 0px;width: 6px;background: linear-gradient(to bottom, rgb(238, 255, 0),rgb(4, 0, 255),rgb(212, 35, 35));"></div>
<p class="w3-xlarge w3-serif" style="color:white;margin-top: 50px;">A Great Work, beat all things. God bless you.</p>
<marquee behavior="scroll" direction="left" style="color:white;font-style: italic;"> Eduardo Mejias Avila; with Love ❣ from Venezuela 💪 😎 @AvilaPro</marquee>
</div>
<div class="w3-panel" style="background: linear-gradient(to right, orangered, yellow);position:relative">
<div style="position:absolute;left: 0px;top: 0px;bottom: 0px;width: 6px;background: linear-gradient(to bottom, orangered,yellow,skyblue);"></div>
<div style="position:relative;">
<div style="border: 1px solid black;position: absolute;width: 50px;height: 50px;top:5px;left:20px;background: rgba(0,0,0,0.5)"></div>
<div style="border: 1px solid black;position: absolute;width: 50px;height: 50px;top:30px;left:50px;;background: rgba(0,0,0,0.4)"></div>
<div style="border-style: solid hidden hidden hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 52px;top: 13px;"></div>
<div style="border-style: hidden hidden solid hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 27px;top: 33px"></div>
<div style="border-style: solid hidden hidden hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 4px;top: 14px"></div>
<div style="border-style: hidden hidden solid hidden; border-width: 1px;position: absolute;width: 39px;height: 39px;transform: rotate(40deg);left: 78px;top: 33px"></div>
</div>
<p class="w3-xlarge w3-serif" style="color:white;margin-top: 80px;font-style: italic">If you want to shine like the Sun, first burn like the Sun</p>
<p style="color:white;font-style: italic;">Anonymous</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">I had learned alot from <b>w3schools</b> Thanks for that. </p>
<p>Ahmed from NIGERIA </p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"the most important thing in coding is to have fun doing it."</i></p>
<p class="w3-xlarge w3-serif"><i>"& remember to kow your limits and try to break it everytime you stuck in something."</i></p>
<p>mahmoud bebars</p>
</div>
<p>thanks fogr giving chsdfsd</p>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Thank you W3Schools, you are a beacon of light in my coding journey. </i></p>
<p>EliMullan</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Thank you W3Schools for all these tutorials and exercises. Learnt alot of stuff from this!</i></p>
<p>Ish_1022</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Thank you W3Schools for Git journey. </i></p>
<p>EliMullan</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>What have in your hand, Just do it, Don't put the things on Time. Time can flip any Time </i></p>
<p>Sackumar</p>
</div>
<div class="w3-panel w3-leftbar w3-light-blue">
<p class="w3-xlarge w3-serif"><i>"Great Resource for Git and Github Tutorial you made my life easier w3schools"</i></p>
<p>Rahul Pulagam From India</p>
</div>