forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2788 lines (2347 loc) · 118 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">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster&effect=shadow-multiple">
<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 -->
<!-- Message from Reggie-->
<div style="border: 5px dotted #0077ff">
<p class="w3-center w3-cursive"> Thanks for the tutorial. Y'all Rock!</p>
</div>
<!-- Furqan added this -->
<div style="background-image: linear-gradient(rgb(16, 16, 43) 30%, rgb(214, 232, 238) 50%);">
<h1 style="font-size:28px; color:white; padding:10px; text-align:center;">Thanks W3Schools</h1>
<p style="font-size:18px; padding:25px; text-align:left;">The tutorial helped a lot.</p>
</div>
<!-- Appropiate-->
<div class="w3-panel w3-leftbar w3-light-grey">
<div class="w3-center">
<p class="w3-large">Amazing tutorial! Thanks a lot w3schools!!</p>
</div>
</div>
<!-- Marco added this -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Thank you for the tutorial :)"</i></p>
</div>
<!-- Oliver added this -->
<div style="background-image: linear-gradient(darkblue 50%, lightblue 50%);">
<p style="font-size:28px; color:white; padding:15px; text-align:center;">Thanks W3Schools!"</p>
<p style="font-size:18px; padding:25px; text-align:center;">Your <b>commit</b>ment to education is very impressive!</p>
</div>
<!-- MFord80 added this -->
<div style="border: 6px dotted grey">
<p>Thanks W3, great tutorial!</p>
</div>
<!-- Message from Raju Kumar S, Bangalore,India -->
<div style="background-image: url('https://wallpapercave.com/wp/wp4556221.jpg');height:300px;background-position: center;background-repeat:no-repeat;background-size: cover;">
<div class="w3-card-4 w3-monospace" style="width: 30%;min-width: 400px;margin-left: auto;padding: 1em;box-shadow: 2px 2px 6px rgb(33 33 33 / 60%);background-color: rgba(255,255,255, 0.7);color:#1c4f14;font-family:Satisfy, serif;font-size: 1.5em; line-height: 0.5;">
<p>Thank you w3schools</p>
<p>From,</p>
<b><span style="color:#df73ff">Raju Kumar S</span></b>
<p class="w3-large">love from India!</p>
</div>
</div>
<!-- Igor added this -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Thank you for great tutorial!"</i></p>
<p>Best Resource about Git</p>
</div>
<!-- Abdulmumin added this -->
<div class="w3-panel w3-leftbar w3-blue">
<p class="w3-text-black w3-serif w3-large">"Thank you very much for this tutorial"</p>
<p class="w3-text-black w3-serif"> Abdulmumin from Nigeria</p>
</div>
<!-- Joydeep from US, was here -->
<div class="w3-panel w3-card-4 w3-center" style="width:50%">
<span style="font-size:100px">❝</span><br>
<p style="margin-top:-60px">
<i><b>Make it as simple as possible, but not simpler - Albert Einstein </b></i></p>
</div>
<!-- Message from Sanjeeb, India(Hyderabad) -->
<div class="w3-panel w3-leftbar w3-green">
<p class="w3-text-white w3-wide w3-roboto">Sanjeeb from India(Hyderabad)</p>
<p class="w3-text-white w3-monospace w3-xxlarge">Thanks for your tutorial!</p>
</div>
<!-- Message from Ho Chi Minh City, Vietnam -->
<div class="w3-panel w3-leftbar w3-green">
<p class="w3-text-white w3-monospace w3-xxlarge">Thanks for your tutorial!</p>
<p class="w3-text-white w3-wide w3-roboto">Alan from Vietnam</p>
<p class="w3-text-white w3-wide w3-roboto">Welcome to Vietnam!</p>
</div>
<!-- Nandried added this -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Thank you so much for the tutorial!"</i></p>
<p>You are the Best</p>
</div>
<!--Belvin added this-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"></p>
<i>"Easiest and most useful tutorial"</i>
<p>Thank you</p>
</div>
<!-- TinyTechieT added this -->
<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>
<!-- Makhmod was here-->
<div class="w3-panel w3-leftbar w3-light-grey">
<div class="w3-center">
<p class="w3-large">Great tutorial thanks w3schools</p>
</div>
</div>
<!-- Ali Rihan @a13r1 from Alexandria, Egypt -->
<div class="w3-card-4 w3-monospace" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 100px;">
<div class="w3-center">
<header class="w3-container w3-light-grey">
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Lobster', Sans-serif; cursor: pointer;">Ali Rihan</h3>
</header>
<div class="w3-container">
<p class="w3-large">Thank you w3schools 💖</p>
<hr>
<p class="w3-left-align">Computer and Systems Engineer, graduated from the Faculty of Engineering, Alexandria University in <span class="w3-hover-text-red">Egypt</span>.</p>
</div>
</div>
</div>
<!-- Ali Rihan @a13r1 from Alexandria, Egypt -->
<!-- Aakash Dinkar commited here -->
<div class="w3-panel w3-cyan w3-text-white w3-xlarge w3-border-blue w3-bottombar">
<p>Aakash Dinkar made this commit <span id="aakash-dinkar-commit-time"></span></p>
<p>
<i class="w3-xlarge w3-serif">
Have a Nice Day!!!
</i>
</p>
<script>
const dateOfCommit = new Date('June 10, 2022 12:00:00');
const todayDate = new Date();
const diffInHrs = ((todayDate-dateOfCommit)/(1000*60*60)).toFixed(1);
document.getElementById('aakash-dinkar-commit-time').innerHTML = diffInHrs + " hrs ago.";
</script>
</div>
<!-- razvojno okruženje -->
<div class="w3-panel w3-center w3-leftbar w3-pale-yellow">
<p><i class="fa fa-quote-left w3-xxlarge w3-opacity"></i>
<i class="w3-serif w3-xlarge">Razvojno okruženje</i>
<i class="fa fa-quote-right w3-xxlarge w3-opacity"></i><br></p>
</div>
<!-- Bogdan from Romania -->
<div class="w3-panel w3-center w3-leftbar w3-pale-yellow">
<p><i class="fa fa-quote-left w3-xxlarge w3-opacity"></i>
<i class="w3-serif w3-xlarge">Make Peace not war! Love eachother.</i>
<i class="fa fa-quote-right w3-xxlarge w3-opacity"></i><br></p>
</div>
<!-- Fadlu was here-->
<div class="w3-panel w3-center w3-leftbar w3-pale-yellow">
<p><i class="fa fa-quote-left w3-xxlarge w3-opacity"></i>
<i class="w3-serif w3-xlarge">Coding is Fun!!!.</i>
<i class="fa fa-quote-right w3-xxlarge w3-opacity"></i><br></p>
</div>
<!-- Rehberbey was here -->
<div class="w3-hover-grayscale" style=" margin-block: 3vmax; user-select: none; cursor: default; max-width: 400px; min-width: 300px; margin-inline: auto; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: space-around; row-gap: 0.5rem; padding-block: 1rem; box-shadow: 0 0 12px 4px rgb(255, 0, 85); border-radius: 1.25rem; color: white; background: linear-gradient( to bottom right, hsla(330, 100%, 67.06%, 0.96) 0%, hsla(329.24, 98.6%, 66.75%, 0.96) 6.9%, hsla(327.07, 94.77%, 65.87%, 0.959) 14.1%, hsla(323.63, 89.13%, 64.48%, 0.958) 21.3%, hsla(319.01, 82.33%, 62.64%, 0.956) 28.7%, hsla(313.26, 74.91%, 60.42%, 0.955) 36.1%, hsla(306.37, 67.35%, 57.86%, 0.953) 43.6%, hsla(298.37, 62.71%, 55.78%, 0.951) 50.9%, hsla(290.74, 69.42%, 56.62%, 0.949) 58.1%, hsla(284.18, 76.07%, 57.35%, 0.947) 65.1%, hsla(278.6, 82.38%, 57.95%, 0.945) 71.9%, hsla(273.95, 88.11%, 58.39%, 0.944) 78.3%, hsla(270.21, 92.97%, 58.7%, 0.942) 84.4%, hsla(267.4, 96.73%, 58.89%, 0.941) 90.1%, hsla(265.61, 99.14%, 58.99%, 0.94) 95.3%, hsla(264.98, 100%, 59.02%, 0.94) 100% ); ">
<div>
<svg viewBox="0 0 512 512" style="fill: rgb(255, 0, 85); width: 120px">
<path d="M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"/>
</svg>
</div>
<div style="width: 300px; height: 100px; overflow: auto">
<h2 style=" color: rgba(255, 255, 255, 0.65); margin: 0; font-size: clamp(2.5rem, 5vw, 3rem); font-weight: 900; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; "> Hello, </h2>
<p style=" color: rgba(255, 255, 255, 0.4); margin: 0; font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 500; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; "> again after <span style=" color: rgba(255, 255, 255, 0.8); font-size: 1.1em; " >1</span > year. </p>
<hr style="border: 2px dashed rgba(255, 255, 255, 0.4)">
<p style=" color: rgba(255, 255, 255, 0.4); margin: 0; font-size: min(1.25rem, 2.5vmax); font-style: oblique; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; ">Success is not final; failure is not fatal: It is the courage to continue that counts. <br><strong>-Winston S. Churchill</strong></p>
</div>
</div>
<!-- Leandro from São Paulo, Brazil -->
<div class="w3-panel w3-round w3-card-2 w3-blue w3-cursive w3-center w3-leftbar w3-rightbar w3-border-indigo w3-border w3-hover-indigo w3-animate-left">
<p class="w3-xxxlarge">Be kind to everyone, and you will live a happy life!</p>
</div>
<div class="w3-panel w3-leftbar w3-green">
<p class="w3-text-white w3-monospace w3-xxlarge">Your tutorials are so clear lots of love from zimbabwe 💖</p>
<p class="w3-text-white w3-wide w3-roboto">ezrajuba</p>
</div>
<!-- Message from Malaysia -->
<div class="w3-panel w3-leftbar w3-green">
<p class="w3-text-white w3-monospace w3-xxlarge">Thanks for your tutorial! I'm learning Git, Github and HTML all in 1 tutorial.</p>
<p class="w3-text-white w3-wide w3-roboto">Nik from Malaysia</p>
</div>
<!-- Message from bangladesh -->
<div class="w3-panel w3-leftbar w3-yellow">
<p class="w3-xxlarge we-serif"><b>w3schools is a great resource thank you.</b></p>
<p>~Brandon from Japan</p>
<p>06/04/2022</p>
</div>
<!-- Message from Hanoi, Vietnam! -->
<div class="w3-panel w3-center w3-leftbar w3-pale-yellow">
<p><i class="fa fa-quote-left w3-xxlarge w3-opacity"></i>
<i class="w3-serif w3-xlarge">
Where there's a will there's a way.</i>
<i class="fa fa-quote-right w3-xxlarge w3-opacity"></i><br>
</p>
</div>
<div class="w3-panel w3-leftbar w3-teal">
<p class="w3-text-white w3-monospace w3-xxlarge">Everything is hard before it is easy</p>
<p class="w3-text-white w3-wide w3-monospace">Goethe</p>
</div>
<!-- Msg from DaNang, VietNam-->
<div style="width: 100%; height: 150px; background-color: #5B5B5B; color: #fff;">
<p style="font-size: 2em; padding-top: 40px; padding-left:25px;"><i>You really make my day, TYSM :)</i></p>
<p style="padding-left: 25px;">- Hoang Quoc Vjet -</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>"Don't let the noise of others' opinions drown out your own inner voice."</i>
</p>
<p>Steve Jobs</p>
</div>
<!--Message from Canada!-->
<div class="w3-panel w3-leftbar w3-pale-blue">
<p class="w3-xxlarge w3-sanserif"> "There is no try, only do!" - Yoda</p>
<p class="w3-small w3-serif">Love from Vancouver, Canada</p>
</div>
<div class="w3-panel w3-leftbar w3-light-blue">
<p class="w3-xlarge w3-serif">
W3Schools is absolutely the best. Love y'all <3
</p>
<p>Love from Richard Zhang</p>
</div>
<div class="w3-panel w3-leftbar w3-light-blue">
<p class="w3-xlarge w3-serif">
W3Schools is absolutely the best. Love y'all <3
</p>
<p>Love from Fadlu Lanre</p>
<p class="w3-small w3-serif">Love from Abeokuta, Nigeria.</p>
</div>
<!--Heyoo-->
<div class="w3-panel w3-leftbar w3-purple">
<p class="w3-xxlarge w3-serif">
Let's learn together from W3Schools💖
</p>
<p><i>- Abhishek from India</i></p>
</div>
<div class="w3-panel w3-leftbar w3-light-green">
<p class="w3-xlarge w3-serif">
<i>"Hii"<br> Danke por el curso :D"</i>
</p>
<p>Apurv</p>
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif"><i>" In theory, theory and practice are the same. In practice, they’re not. "</i>
</p>
<p>From Khuong Nguyen</p>
</div>
<!-- Message from India -->
<div class ="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge">
Thanks W3 School for all the amazing tutorials!
</p>
<p>Love from SB</p>
</div>
<!-- Message from bangladesh -->
<div class="w3-panel w3-leftbar w3-yellow">
<p class="w3-xxlarge we-serif"><b>Thank you w3school</b></p>
<p>Love from Bangladesh</p>
</div>
<!-- Message from Lagos, Nigeria-->
<div class="w3-kid">
<p>Thanks to w3schools for their well structured and detailed tutorial and th e reason why we are all programmer</p>
</div>
<!-- I was there -->
<div class="w3-panel">
<p>Hello from Luxemburg :)</p>
<p>Thanks for all these great tutos !</p>
<p>22/05/2022</p>
</div>
<!-- Message from Brazil -->
<div class ="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge">
Thanks W3 School for all the amazing tutorials!
</p>
<p>AQUI É SENAC SL - É OS GURI E A GURIA</p>
</div>
<!-- Message from India -->
<div class ="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge">
Thanks W3 School for all the amazing tutorials!
</p>
<p>Love from India</p>
</div>
<!-- fork -->
<div class ="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge">
Thanks W3 School for all the amazing tutorials!
</p>
<p>Love from India</p>
<h1>Payal Dhakad</h1>
</div>
<!-- Message from Brazil/RS -->
<div class ="w3-panel w3-leftbar w3-pink">
<p class="w3-xxlarge">
<center><h1>AQUI É SENAC SL - É OS GURI E A GURIA</h1></center>
</p>
<p>Eles mesmo</p>
</div>
<!--Hello w3schools-->
<h1>Thank you for the tutorial W3school!</h1>
<p><i>Don't forget to laugh and drink water..</i></p>
<p>Ncha! -miyaavkatz</p>
<!-- Ahmad from Pakistan -->
<div class ="w3-panel w3-leftbar w3-sand w3-serif"">
<p class="w3-xxlarge">
Thanks W3School for the amazing tutorials
</p>
<b><p>Ahmad from Pakistan🇵🇰</p></b>
<p>18-05-2022</p>
</div>
<!-- Harsh Goyal was here from India -->
<div class ="w3-panel w3-leftbar w3-green">
<p class="w3-xxlarge">
Thanks for the tutorial W3 School!
</p>
<p>Thanks for the all amazing content</p>
<p>Harsh Goyal from India ❤️⭐</p>
</div>
<!--Hello w3schools-->
<div class="w3-panel w3-leftbar w3-light-green">
<p class="w3-xlarge w3-serif">
<i>"Hello, this is Kei"<br> Thanks for the awesome learning platform"</i>
</p>
<p>Kei</p>
</div>
<!--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>
<!--Shyamrag was here-->
<div class="w3-panel w3-leftbar w3-light-green">
<p class="w3-xlarge w3-serif">
<i>"Thank you w3schools!! You are awesome"<br> Thanks for the awesome learning platform"</i>
</p>
<p>Kei</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>
<!--payal dhakad-->
<div class="w3-panel w3-leftbar w3-yellow">
<p class="w3-xxlarge we-serif">
<b>Thank you for everything!</b>
<b>payal dhakad</b>
<b>Date:1/06/2022</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>
<!-- Thanks u so much -->
<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>~ Rio, 13 Mei, 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>
<!-- @payal dhakad 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;"> 1/06/2022 1:00</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: 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">Thankyou W3Schools💖</h4>
</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 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 Romania.</p>
<p>Lucian, 18/06/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 style="background-color:maroon; color: white">
<h1>Howdy from Texas!</h1>
<h3>
Thank y'all for all the awesome guides!
I have learned about HTML, CSS, JavaScript,
and now Git from your tutorials!
<b>Cole McAnelly '24</b>
</h3>
<p><b>June 6, 2022</b></p>
</div>
</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">