forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2099 lines (1756 loc) · 89 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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Satisfy">
<link href="https://fonts.googleapis.com/css2?family=Crafty+Girls&display=swap" rel="stylesheet">
<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 -->
<!--Hey w3schools, thanks for all your tutorial articles-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"This is Raj Maity"<br> I have learned git and github from w3schools"</i></p>
<p>Raj</p>
</div>
<!--can you offer me a job-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">lots of love from india</p>
<p>front-end developer</p>
<p>i'm not styling it too much coz i feel lazy when i'm writing this</p>
</div>
<!--Hello reviewer. If you are reading this please add a tutorial on Ruby thank you.-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"W3schools has really helped me get into coding free of charge.<br>I am eternally grateful for your knowledge."</i></p>
<p>Victor</p>
</div>
<!-- Quang Tran was here -->
<div class="w3-panel w3-leftbar w3-pink w3-border-purple">
<p class="w3-xlarge w3-serif">Made with <span class="w3-xxxlarge">♥♥♥</span></p>
<p>Quang Tran</p>
</div>
<!--@ayoolavictor was here-->
<div class="w3-panel w3-leftbar w3-yellow">
<p class="w3-xxlarge we-serif">
<b>Thank you for everything!</b>
</p>
<p>I am really grateful</p>
</div>
<!-- Josephzal was here -->
<div class ="w3-panel w3-leftbar w3-green">
<p class="w3-xxlarge">
Thanks for the tutorial W3 School!
</p>
<p>Josephzal</p>
</div>
<!-- Aspiringlivlity was here-->
<div style="background-color:rgb(0, 247, 255); color:black; min-height:30vh;">
<h2>Aspiringlivlity</h2>
<p>Learning git and github...thanks W3!</p>
</div>
<!-- @xOviwyRx was here -->
<div class ="w3-panel w3-leftbar w3-black">
<p class="w3-xxlarge w3-serif">
<i>W3 School helps me. Thank you W3 School!</i>
</p>
<p>xOviwyRx</p>
</div>
<!-- @mayankmishra9595 was here -->
<div class="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge w3-serif">
<i>"Thank you W3 School!"</i></p>
<p>Mayank</p>
</div>
<!-- kingcong was here 04/26/2022 -->
<h1>Thank you w3schools for all the wonderful tutorials!</h1>
<p>I have learned a lot from your tutorials.</p>
<p>kingcong was here 04/26/2022.</p>
<p>Please support w3scools.com</p>
<!-- This ends kingcong's message. -->
<!-- @rashid was here -->
<div class="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge w3-serif">
<i>"Thank you!"</i></p>
<p>Rashid</p>
</div>
<!-- paora was here 23/03/22 -->
<h1>Hello w3school Community</h1>
<p>I look foward to working with my first collab on github</p>
<!-- leeuw is learning git-->
<div class="w3-container w3-round-xlarge w3-black w3-margin-top w3-margin-bottom" style="box-shadow:2px 2px 0 #444">
<div class="w3-center w3-cursive" >
<blockquote class="w3-text-white">
<q>When something is important enough, you do it even if the odds are not in your favor.</q>
<cite>Elon musk</cite>
</blockquote>
<div class="w3-badge w3-right-align w3-padding" style="font-size:medium">21/04/2022</div>
</div>
</div>
<!-- END -->
<!-- add simple content -->
<p style="text-align: center; font-size: 20px;">Thank you, W3SCHOOL</p>
<div class="w3-container w3-round-xlarge w3-light-blue">
<br>
<h2 class="w3-center w3-cursive w3-text-white" style="text-shadow:2px 2px 0 #444">
<span class="w3-animate-left">Thanks a Lot! </span>
<span class="w3-animate-right"> Javier. From 🇦🇷 🇦🇷 🇦🇷</span>
</h2>
<br>
<div class="w3-badge w3-blue w3-right-align w3-padding" style="font-size:x-small">Argentina, 17/04/2022</div>
</div>
<!-- MacGreenbear adding on -->
<div style="background-color:green; color:white; min-height:30vh;">
<h2>Mac Green Bear</h2>
<p>Git'in in gear with Git and GitHub...thanks W3!</p>
</div>
<!-- GB was here -->
<div style="color:white ;background: linear-gradient(45deg, #863554, #292879, #246332);width: 70%; margin: auto;padding: 10px; text-align: center;">
<h3><em>"Learn Something in Everything & Learn Everything in Something"</em></h3>
<P>~ GB, 13 April, 2022</P>
<P>Thank You W3Schools💖</P>
</div>
<!-- God_of_Code was here -->
<div style="background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);height: 30vh;">
<p id="God_of_Code" style="font-size: 2.2em; text-align: center; font-style: italic;font-family: 'Courier New', Courier, monospace;">A journey of a lifetime begins with a single push request.</p>
</div>
<!-- JustOnesAndZeros may have been here -->
<div style="background :linear-gradient(to right, #004F80 , #009DFF);height:auto;max-height: 165px; padding-left: 1%; border-left: #a1a1a1; border-left-style: solid; border-left-width: thick;">
<h2 style="font:italic; color:#ffffff;"><i>"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"</i></h2>
<p style="color:#ffffff">JustOnesAndZeros</p>
</div>
<!-- @fozail was here -->
<div style="background :linear-gradient(to right, #d4d4f7 , #6a6ae2);height:auto;max-height: 165px;">
<p style="font:italic small-caps bold 25px/40px Georgia,Lucida Handwriting;text-align: center;">Do I need to be liked? Absolutely not. I like to be liked. I enjoy being liked. I have to be liked, but it’s not like this compulsive need to be liked, like my need to be praised.<br>~ Micheal Scott</p>
</div>
<!-- ICOZDS is learning Git -->
<p>Tell me and I forget, teach me and I may remember, involve me and I learn.</p>
<p>W3schools is doing a great job involving everyone learning on their platform. Keep up the good work</p>
<!-- @Geo was here -->
<div style="background-color:#000000;color:#ffffff">
<i style="font-family:Satisfy, serif;font-size: 3.1rem;text-align: center;">"Life is like riding a bicycle. To keep your balance you must keep moving."</i>
<p style="text-align:center;font-size: 2rem;">-Albert Einstein</p>
<p style="color:#00ee00">Entry: 30 Mar. 2022</p>
</div>
<!-- @sebohm was here -->
<div class="w3-panel w3-center w3-rightbar w3-green">
<p><i class="w3-serif w3-xlarge">
<span style="font-size:150px;line-height:0.6em;opacity:0.2">✔</span>
Thank you so much for your great Job!<br>
I learned a lot on the w3school website and i will go on learning!</i></p>
</div>
<!-- @theksbd was here -->
<div class="w3-panel w3-leftbar w3-sand w3-xxlarge w3-serif">
<i style="font-size: 2rem;">"I'm a third-year student at my university. Hoping you guys will pass the DSA course at the first time you study it"</i>
<p style="font-size: 1rem; font-weight: bolder;">theksbd - 2022-03-27</p>
</div>
<!-- @jiggs was here -->
<div class="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge w3-serif">
<i>"I don't know html and css yet so im copying mira's :)"</i></p>
<p>jiggs</p>
</div>
<!-- @Mira was here -->
<div class="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge w3-serif">
<i>"Learned a lot about git and github. Thank you:)"</i></p>
<p>Mira^-^</p>
</div>
<!-- @Ribobo was here -->
<div class="w3-panel w3-padding-jumbo w3-black w3-text-yellow">
<div class="w3-container">
<h1>In case of fire 🔥</h1>
<ul class="w3-text-green">
<li> git add</li>
<li> git commit</li>
<li> git push 😉</li>
</ul>
</div>
<h3 class=w3-green>This is so cool! I appreciate the free service.</h3>
<p> Samad (<i>@shaiksamad</i> ). Nellore, India.
</div>
<div style="padding: 5px 25px 25px 25px; background: rgb(255, 255, 255); color: #3f3f3f; border-radius:15px; box-shadow:5px 5px 10px gray"><p>Thank you for the great Git tutorial!</p><p style="text-align:right;font-size:12px;font-style: italic;">susan kh, 2022, thanks w3schools <3 </p></div>
<!--@tamimhmizi left a message-->
<div style="background-image: linear-gradient(140deg, #EADEDB 0%, #a8eeff 50%, #2f89ff 75%); padding: 12px;border-radius: 13px;">
<h2>Hello there! w3Schools helped me a lot in learning everything Greetings from Tunisia!</h2>
</div>
<div style="background-image: linear-gradient(to right, #ffcccc, #ffe6cc, #ffffcc, #ccffcc, #ccffff,
#ccccff, #f2ccff); color: gray; padding: 20px;">
<h2 style="text-align:center">hello worlds & w3schools</h2>
</div>
<div style="padding: 5px 25px 25px 25px; background: rgb(255, 255, 255); color: #3f3f3f; border-radius:15px; box-shadow:5px 5px 10px gray"><p>Thank you for the great Git tutorial!</p><p style="text-align:right;font-size:12px;font-style: italic;">susan kh, 2022, thanks w3schools <3 </p></div>
<!-- @shaiksamad was here -->
<div class="w3-panel w3-padding-jumbo w3-black w3-text-yellow">
<div class="w3-container">
<h1>In case of fire 🔥</h1>
<ul class="w3-text-green">
<li> git add</li>
<li> git commit</li>
<li> git push 😉</li>
</ul>
</div>
<h3 class=w3-green>Thankyou, w3schools. I learned a lot from this site.</h3>
<p> Samad (<i>@shaiksamad</i> ). Nellore, India.
</div>
<!-- @shaiksamad completed -->
<div style="background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);color:white; padding:20px 5px">
<h3 style="text-align:center">The Git tutorial is very brief, clear and easy to understand, although my English is not really good. I'm so grateful to W3Schools 😍</h3>
<div style="display: flex; justify-content: center; align-items: center;">
<img src="https://cdn-icons-png.flaticon.com/512/555/555515.png" alt="Vietnam" style="width: 30px;">
<p style="margin: 0 10px;">Tùng Vũ, 14/03/2022 22:10</p>
<img src="https://cdn-icons-png.flaticon.com/512/555/555515.png" alt="Vietnam" style="width: 30px;">
</div>
</div>
<div style="background-color:#62a079; color: white; padding: 10px;" >
<h2> Thanks W3school </h2>
<h3 style="text-align:center">Dakar, Senegal - 15/03/2022 12:05</h3>
</div>
<!-- Quiviro was here -->
<div class="w3-panel w3-leftbar w3-black">
<p class="w3-large w3-monospace w3-text-lime">My favorite classic games</p>
<ul class="w3-monospace">
<li>Castlevania</li>
<li>The Legend of Zelda</li>
<li>Excite Bike</li>
<li>Halflife</li>
<li>Neverwinter Nights</li>
</ul>
<p class="w3-text-yellow">Quiviro Enquerre</p>
</div>
<!-- deepak was here -->
<div style="background-image: linear-gradient(140deg, #EADEDB 0%, #BC70A4 50%, #BFD641 75%); padding: 12px;border-radius: 13px;">
<h2>Hello😍 there! w3Schools helps me alot, in my Web Development journey</h2>
<p>Deepak Yadav<p>
<h4>❤️ from India</h4>
</div>
<div style="background-color: black; color:white;">
<h3 style="text-align:center">Thank you w3schools for this great Tutorial</h3>
<p style="text-align:center">Elias Hayek, 12/03/2022 17:24</p>
</div>
<div style="background-color:#62a079; color: white; padding: 10px;" >
<h2 >One can Learn from youtube Videos, but learning by reading and implementing is the BEST. And that is provided by W3SCHOOLS Platform that even for FREE . Thankyou very much For you Hardwork for providing free and best content. </h2>
<h3 style="text-align:center">Keshav, 12/03/2022 10:35</h3>
</div>
<div style="background-color:rgba(51, 51, 51, 0.822); color: white;" >
<h3 style="text-align:center">You are AWESOME!!!</h3>
<p style="text-align:center">QA OLY, 09/03/2022 16:45</p>
</div>
<div style="background-color:rgba(51, 51, 51, 0.822); color: white;" >
<h3 style="text-align:center">Thank you for share your knowledges</h3>
<p style="text-align:center">Daniel Josue, 07/03/2022 16:10</p>
</div>
<div style="height: 100px; background-color:rgba(51, 51, 51, 0.822); color: white; display: flex; align-items: center; justify-content: center;
flex-direction: column; font-family: sans-serif; margin: 20px 0px;">
<strong><u>Abdullah Nisar Ahmed Gorar</u></strong>
<i>07/03/2022 12:00pm</i>
</div>
<div style="background-image: linear-gradient(180deg, #005bbb 50%, #ffd500 50%);color: white;padding: 1px;" >
<h3 style="text-align:center">Tomorrow is just yesteday in the future</h3>
<p style="text-align:center">Kevin, 03.06.2022</p>
</div>
<div style="background-image: linear-gradient(180deg, #005bbb 50%, #ffd500 50%);color: white;padding: 1px;" >
<h3 style="text-align:center">Слава Україні - Slawa Ukrajini - Glory to Ukraine</h3>
<p style="text-align:center">Chris, 03.03.2022 (and btw thank you W3schools for making all of these great tutorials!)</p>
</div>
<div style="background-image: linear-gradient(180deg, #005bbb 50%, #ffd500 50%);color: white;padding: 1px;" >
<h3 style="text-align:center">Thank You So Much Guys .</h3>
<p style="text-align:center">You Are Just Awesome - Tarik Mouhssine</p>
</div>
<div>
<p>Joan Vila Valls - 2/3/2022</p>
<h6>STOP WARS</h6>
</div>
<div style=" background: linear-gradient(to right, #232526, #414345);color: wheat;box-shadow:1px 2px 4px hsl(220deg 60% 50%);padding: 1px;border-radius: 15px;">
<h1 style="text-align:center">There is no Tomorrow ⏱️</h1>
<h3 style="text-align:right">By MukeshGehlot;Thankyou W3Schools💖</h4>
</div>
<div style="background-color: black; color:white; font-size:150%;">
<h2 style="color:yellow; font-size:150%; text-align:center">Hello Reader</h3>
<p>It's me Felix Obianozie on the terminal</p>
<p>...just wanted you to know that I was here on 25 Feb. 2022</p>
<p>Beginning a programming career with w3schools will be your best gift to yourself this year</p>
<p style="color:yellow">Thank me later...</p>
<br>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-orange w3-hover-text-black">
<h3>Grazie W3schools</h3>
<p>Sei la nostra Bibbia</p>
<p>Scuola Meucci</p>
</div>
<div style="background-image: linear-gradient(140deg, #fd0404 0%, #5eff00 50%, #fcfcfc 75%); padding: 12px;border-radius: 13px;">
<h2>Hello there! w3Schools helps me alot. Greetings from Iran</h2>
</div>
<div class="w3-panel w3-card-4 w3-light-grey" style="width:50%">
<p class=" w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-text-red"></i><br>
Gortaria de agradecer a w3scools pelo excelente tutorial de git e github tem me ajudado muinto, obrigado.
<p><i>Andersson Gonçalves</i></p></p>
</div>
<div class="w3-panel w3-leftbar w3-hover-shadow w3-blue w3-hover-text-black">
<h3>Hello W3S!</h3>
<p>Greetings from Estonia</p>
<p>Liu...</p>
</div>
<div style="background-image: linear-gradient(140deg, #EADEDB 0%, #a8eeff 50%, #2f89ff 75%); padding: 12px;border-radius: 13px;">
<h2>Hello😍 there! w3Schools helps me alot. Greetings from Argentina!</h2>
</div>
<div class="w3-panel w3-black w3-text-green">
<h2>Hello World!</h2>
<p><em>Thank you so much for the amazing tutorial!</em></p>
<p>Greetings from Brazil.</p>
<p>Rudi, 20/02/2022.</p>
</div>
<div style="background-color: rgba(7, 243, 223, 0.897);">
<h2 style="text-align: center; color: rgb(87, 87, 87);">Random quote:</h2>
<p style="font-size: 30px; color:rgb(105, 105, 105)">Once you stop learning, you start dying</p>
</div>
<div style="background-color: rgba(7, 7, 243, 0.897);">
<h2 style="text-align: center; color: #fff;">The Github tutorial</h2>
<p style="font-size: 30px; color:white">the tutorial is really interesting and i love.</p>
</div>
<div class="w3-panel w3-card-4 w3-light-grey" style="width:50%">
<p class=" w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-text-red"></i><br>
If I have learnt further it is by standing on the shoulders of w3schools.</p>
</div>
<div class="w3-panel w3-leftbar w3-cyan">
<p class="w3-xxlarge w3-serif"><i>Thanks for the tutorial! Greetings from Russia!</i></p>
<p>YR, Feb 6, 2022</p>
</div>
<div style="background-color: #00FFFF; border: #000 solid 1px;">
<p>
<h2>Hello World!</h2>
Thank you for the tutorial!<br>
LC- Feb 10, 2022
</p>
</div>
<section>
<h2>Allah Macedo</h2>
<p>Estive por aqui</p>
<p>Grato pelo tutorial W3Schools.</p>
</section>
<div class="w3-panel w3-black">
<p>
<h2>Hello World!</h2>
Thank you for the good tutorial! Greetings from Korea.<br>
Kaye - Feb 09, 2022
</p>
</div>
<div class="w3-container">
<div class="w3-panel w3-pale-blue w3-leftbar w3-rightbar w3-border-blue">
<h1>Greetings from Ethiopia</h1>
<h3>Thank you W3Schools for this amazing tutorial! I understand how to navigate Git and Github so much better now!</h3>
<h3 style="color: #042b30;"><b>Ermiyas Abate</b></h3>
<p style="color: #042b30;"><b>Feb 6, 2022</b></p>
</div>
</div>
<div class="w3-panel w3-leftbar w3-black w3-text-yellow">
<p class="w3-xlarge w3-sans-serif">
<b>"Thanks w3schools for creating this tutorial... I learned a lot!"</b></p>
<p>Tharinda, 06 Feb 2022</p>
</div>
<div style="background-image: linear-gradient(140deg, #EADEDB 0%, #BC70A4 50%, #BFD641 75%); padding: 12px;border-radius: 13px;">
<h2>Hello😍 there! w3Schools helps me alot</h2>
<h3>Tahseen Ahmad Bhat </h4>
<h4>Kashmir (India)</h4>
</div>
<div class="w3-panel w3-leftbar w3-pink">
<p class="w3-xlarge w3-serif"></p>
<h3>Helped a lot for learning more detailed things about git.</h3>
<p><b>Nova - </b>30 jan 2022</p>
</div>
<div class="w3-panel w3-leftbar w3-black">
<p class="w3-xlarge w3-serif"></p>
<h3>w3schools always helps me to learn new things.</h3>
<p><b>Nikhil - </b>25.01.2022</p>
</div>
<div class="w3-panel w3-leftbar w3-red">
<p class="w3-xxlarge w3-monospace">
<i>"I leart a lot from W3schools"</i></p>
<p>Jaya 2.2.2022</p>
</div>
<div class="w3-panel w3-leftbar" style='font-family: "Montserrat", sans-serif; background: linear-gradient(to bottom, #33ccff 0%, #ff99cc 100%);'>
<h2>✨Thanks to your tutorials among many others, an IT legend was born.✨</h2>
<p class='w3-large'>
Be proud of yourself.<br/>
I am proud of you.
<span style='font-size:50px;'>🍾🍷🍷</span>
<br/><br/>
<i>4ristokratka, Jan 25, 2022, Slovakia</i></p>
</div>
<div>
<p>This is such a great tutorial! I understand how to navigate git and Github so much better now!<p>
<p><i> Svetlana, 22.01.2022 USA</i></p>
</div>
<div class="w3-panel w3-leftbar" style="background: #ff009d; font-family: 'Trebuchet MS', sans-serif; color : #fff">
<p class="w3-xxlarge">
Working through your tutorials is always enjoyable!
Greetings and thank you from USA
</p>
<p style="color: #042b30;"><b>Jan 22, 2022</b></p>
</div>
<div class="w3-panel w3-leftbar" style="font-family:'Lucida Sans', 'Lucida Sans Regular', sans-serif ; background-color: #600BB4;">
<h1>
Thanks W3schools for this amazing tutorial
</h1>
<h2>Hello from Iran</h2>
<p><i>January 21 2022</i></p>
</div>
<div style="background-color:#000; padding:18px; border-radius:0px 15px 15px 0px; margin:20px 0px;font-family:'Courier New', Courier, monospace; color:#008000; border-left: 8px solid #008000;">
<h2 style="font-family:'Courier New', Courier, monospace; font-size:45px; text-align:center;">
Greetings from 🇧🇷
</h2>
<p style="font-size:20px;">
W3Schools, you contribute a lot to the professional growth of millions of people around the world.<br>Thank you!! 💚
</p>
<p style="font-size:15px; text-align:end;">
João Paulo | Feb 28, 2022
</p>
</div>
<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">