forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
7530 lines (6350 loc) · 305 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">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-colors-2017.css">
<link href="https://fonts.googleapis.com/css2?family=Geologica&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 -->
<!-- Message from rootuser-et -->
<div class="w3-container w3-panel w3-round-xxlarge w3-card w3-light-green w3-monospace w3-margin ">
<h2>Why i love pumpkin seeds?</h2>
<p>
The reason why I love pumpkin seeds could be attributed to their unique combination of taste and nutritional benefits. Pumpkin seeds have a pleasant, slightly nutty flavor that many people find appealing. Additionally, they are a good source of nutrients such as protein, fiber, healthy fats, vitamins, and minerals like magnesium and zinc. These nutritional benefits not only make pumpkin seeds a tasty snack but also contribute to their popularity as a health-conscious choice.<br>
Furthermore, personal preferences for certain foods can be influenced by cultural, familial, or individual experiences. Perhaps you have positive memories associated with pumpkin seeds from your past, or you simply enjoy their crunchy texture and versatility in various recipes.<br>
Ultimately, the reasons for loving pumpkin seeds can vary from person to person, but the combination of taste, nutrition, and personal preferences likely plays a significant role in your affection for them.
</p>
<p class="w3-large">
In this short story, I expressed a deep attachment to pumpkin seeds, emphasizing that their taste brings me pleasure and joy. They have become my weakness, and I always carry them with me to savor their flavor, even on long journeys. "I love pumpkin seeds" has become not just a phrase but a life philosophy for me, highlighting my fondness for this delightful snack.
</p>
</div>
<!-- End message from rootuser-et -->
<!-- Message from Yohannes -->
<p>I'm Yohannes Molla, from Ethiopia.</p>
<!-- End messagge from Yohannes -->
<!-- Message from peterlaczo -->
<div class="w3-panel w3-teal w3-card-4">
<h3>This is the best Git/GitHub tutorial ever!</h3>
<p>Thank you, <a href="https://www.w3schools.com/">w3schools.com</a>!</p>
<p class="w3-serif w3-right">I was <abbr title="Péter Laczó">P.L.</abbr> from Hungary. Cheers!</p>
</div>
<!-- End message from peterlaczo-->
<div id="jrggroberto" class="w3-card-4 w3-monospace msg-jrggroberto" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 80px; margin-top: 80px;">
<div class="w3-center">
<header class="w3-container w3-blue">
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Sans-serif; cursor: pointer;"><img style="border-radius: 50%; margin-right: 20px;" alt="J.Roberto" src="https://img.freepik.com/vetores-premium/avatar-de-homem-barbudo-foto-generica-de-perfil-masculino_53562-20202.jpg?w=2000" width="60px" height="60px">Anirudra Adhikary</h3>
</header>
<div class="w3-container w3-sand w3-card-4">
<p class="w3-medium" style="color:#005c99">In a tranquil village, a wise old man named Aiden shared a timeless phrase: "This too shall pass." When a brutal drought struck, some followed his counsel while others despaired. Those who listened persevered, conserving water and maintaining hope. Eventually, rain returned, reviving the land and the villagers' spirits. Aiden's wisdom taught them that life's challenges are temporary, a lesson they held in their hearts forever.</p>
<hr>
<p><span class="w3-hover-text-green"> India🇮🇳</span>.</p>
</div>
</div>
</div>
<!-- Message from anther1991-->
<div class="w3-panel w3-green w3-topbar w3-bottombar w3-border-amber w3-padding-16">
<h2 class="w3-opacity">Love all of your hard works, W3schools <3 <3 <3 <br/>
=== Vietnam - 9/20/2023 ===</h2>
</div>
<!-- End message from Dwayne -->
<!-- Message from Dwayne -->
<div class="w3-panel w3-card-4 w3-dark-grey w3-padding-16 w3-xlarge"><em>God is our refuge and strength, a very present help in trouble.</em> - <strong>Psalm 46:1</strong></div>
<!-- End message from Dwayne -->
<!-- Message from truongvinh57 -->
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-margin-right"></i>
Good content as always!! </p>
</div>
<!-- End of message from truongvinh57 -->
<!-- Message from Todd1s -->
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-margin-right"></i>
Love w3school and school 21 (Todd1s) </p>
</div>
<!-- End of message from Todd1s -->
<!-- Message from AnniVaah -->
<div style='font-family:Verdana ;background-color:rgb(101, 0, 13);background-image:linear-gradient(to right, rgb(184, 0, 24), rgb(255, 183, 0));text-align:center;color:white;width:90%;margin:15px auto;border-radius:5px;'>
<h2 style='font-size:2rem'>No niin!</h2>
</div>
<!-- End of message from AnniVaah -->
<div style="width: fit-content; height: fit-content; margin: 10px auto; background-color: #00f7ff; padding: 5px 15px; border-radius: 15px; color: rgb(140, 0, 255); box-shadow: 0 0 10px rgb(140, 0, 255); text-shadow: 0 0 2px rgb(140, 0, 255);">
<h2>Hello from Serbia!:)<br>Thanks W3Schools for their work<br>BlackPerico <3</h2>
</div>
<!-- Message from lashuti -->
<div style='font-family:fantasy;background-color:plum;background-image:linear-gradient(to right, rgb(160, 49, 160), rgb(114, 0, 114));text-align:center;color:white;width:500px;margin:15px auto;border-radius:5px;box-shadow:0 0 8px 5px rgba(195, 0, 255, 0.23)'>
<h2 style='font-size:3rem'>გამარჯობა!</h2>
<h3 style='font-size:3rem'>Hello my fellow Georgians! :)</h2>
</div>
<!-- End of message from lashuti -->
a message from justcallmeroybert
<!--Message from jagg-test -->
<div class="w3-panel w3-card-4 w3-light-grey" style="width:50%">
<p class=" w3-large w3-serif">
Thank you for the Git tutorial! - JG 2023
</p>
</div>
<!--End message from jagg-test -->
<!-- message from Fab-->
<div class="w3-panel w3-card-4 w3-light-grey" style="width:50%">
<p class=" w3-large w3-serif">
Hello ! Great tutorial! Thanks
</p>
</div>
<!-- end message from Fab-->
<!--Message from dngebremedhn -->
<div class="w3-col l3 m6 w3-dark-grey w3-container w3-padding-16">
<p><em>I am dngebremedhn from Tigray, learning Git and Github</em></p>
<P>I am learning forking here. Thank you w3schools for allowing us do this.</P>
</div>
<!--End message from dngebremedhn-->
<!-- message from ggdmj23 -->
<div class="w3-panel w3-card-4 w3-light-grey" style="width:50%">
<p class=" w3-large w3-serif">
Having fun learning Web Development with w3Schools!!!
</p>
</div>
<!-- end message from ggdmj23 -->
<!-- message from Jpgpcs -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life.</i>
</p>
<p>John 3:16 NIV</p>
</div>
<!-- end message from Jpgpcs -->
<!-- message from Dara -->
<div class="w3-panel w3-card-4 w3-light-grey" style="width:50%">
<p class=" w3-large w3-serif">
Hello from Kurdistan! Grateful to W3Schools for their fantastic tutorials! ❤️☀️💚
</p>
</div>
<!-- end message from Dara -->
<!-- message from VladRosi -->
<div style='font-family:fantasy;background-color:seagreen;background-image:linear-gradient(to right, mediumseagreen, seagreen);text-align:center;color:white;width:500px;margin:15px auto;border-radius:5px;box-shadow:0 0 8px 5px rgba(0,255,0,.23)' onmouseover='this.style.color="red"' onmouseout='this.style.color="white"'>
<h2 style='font-size:3rem'>Hello everyone from Russia!</h2>
<h3 style='font-size:2.2rem'>Thanks w3schools's team for this and other tutorials!{>_<}</h3>
</div>
<!-- end message from VladRosi -->
<!-- Message from papaoto75 -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe."</i>
</p>
<p>Albert Einstein</p>
</div>
<!-- End message from papaoto75 -->
<!-- message from primeakash -->
<div style = "font-family: Arial, Helvetica, sans-serif; background-color:#42032C; color: white; border-radius: 50px; text-align: center; height: auto; width: 60%; margin: auto; padding: 40px;">
<h2>Hello World!!! from primeakash </h2>
</div>
<!-- End Message from primeakash-->
<!-- message from wiwr -->
<div style = "font-family: Arial, Helvetica, sans-serif; background-color:#42032C; color: white; border-radius: 50px; text-align: center; height: auto; width: 60%; margin: auto; padding: 40px;">
<h2>Hey! all people </h2>
</div>
<!-- End Message from -->
<!-- Message from MMP -->
<div style = "font-family: Arial, Helvetica, sans-serif; background-color:#42032C; color: white; border-radius: 50px; text-align: center; height: auto; width: 60%; margin: auto; padding: 40px;">
<h2>Hello from IRAN! Thanks W3S for amazing tutorials!</h2>
<p>Future developer, MMP</p>
</div>
<!-- End Message from MMP-->
<div style="border:5px solid grey;background-color: black;text-align: center;font-size: larger;"><p style="display:inline-block;color:white">Ahoy </p><p style="color: violet;display: inline-block;">from </p><p style="display: inline-block;color:red">Rob</p></div>
<div style="background-color: #697eff;text-indent: 43px;text-transform: capitalize;font-family: Arial, Helvetica, sans-serif;"><pre>Torilla tavataan.</pre></div>
<!-- Message from ryyan-safar -->
<div style="background-color: tomato; transform: capitalize; font-family:Verdana, Geneva, Tahoma, sans-serif; font-size:large;">
I'm Rybo and im learning Git from <a href="https://www/w3schools.com">w3schools.com</a>
</div>
<!-- Enf of message from ryyan-safar -->
<!-- Message from petoern -->
<p>Erm, yes, i don't have any idea what i should write.</p>
<h6>I don't know much about html so i won't make anything fancy like the others.</h6>
<a href="https://www.w3schools.com">Thank you.</a>
<!-- End Message from my cat -->
<!-- Message from my cat-->
<h3>you are in my chair!!</h2>
<!-- End Message from my cat-->
<!-- Message From eric-kunin -->
<div style="background-color: #009999;text-indent: 43px;text-transform: capitalize;font-family: Arial, Helvetica, sans-serif;"><pre>hello from Israel!
I'm learning git, nickname in discord is: <span style="color: #600BB4;">Gater777</span></pre></div>
<!-- End of message from eric-kunin -->
<!-- Message From budi-tech -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"its a great tutorial, thanks!"</i></p>
<p>budi-tech</p>
</div>
<!-- End of message from budi-tech -->
<div style="background-color: #34257D; color: #e7e7f1; text-align: center; border-radius: 100px;
margin-left: 30em; margin-right: 30em; border: solid black;">
<h1>eu estive aqui!!</h1>
<p>agora é sua vez.</p>
<p>por: Ana Laura IFC-2023</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Oi"</i></p>
<p>Mariana</p>
</div>
<!-- Diana e Isabeli, Brasil -->
<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;">Diana e Isabeli</h3>
</header>
<div class="w3-container">
<p class="w3-large">💖</p>
<hr>
<p class="w3-left-align"><img src="https://static.vakinha.com.br/uploads/vakinha/image/400678/images.jpeg?ims=280x280" alt=""></p>
<p class="w3-right-align">15.08.2023</p>
</div>
</div>
</div>
<!-- Diana e Isabeli, Brasil-->
<div style="background-color: #1b6315; color: #e7e7f1; text-align: center; border-radius: 10px;
margin-left: 30em; margin-right: 30em; border: solid black;">
<h1>Pires passou por aqui, beijos</h1>
<h2>IFC 2023</h2>
<p>é... até que é legal</p>
</div>
<!-- Message from Gabriela Silveira-->
<div id="jrggroberto" class="w3-card-4 w3-monospace msg-jrggroberto" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 80px; margin-top: 80px;" >
<div class="w3-center" >
<header class="w3-container w3-blue" >
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Sans-serif; cursor: pointer;"><img style="border-radius: 50%; margin-right: 20px;" alt="J.Roberto" src="https://img.freepik.com/vetores-premium/avatar-de-homem-barbudo-foto-generica-de-perfil-masculino_53562-20202.jpg?w=2000" width="60px" height="60px">Mateus Rosa</h3>
</header>
<div class="w3-container w3-sand w3-card-4" >
<p class="w3-medium" style="color:#9fe8fa">The sound of the waves is the best soundtrack in the world.</p>
<hr>Ago 15, 2023
<p ><span class="w3-hover-text-green"> Brazil, SC</span>.</p>
</div>
</div>
</div>
<!-- Message from Heloisa Machado-->
<div id="jrggroberto" class="w3-card-4 w3-monospace msg-jrggroberto" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 80px; margin-top: 80px;" >
<div class="w3-center" >
<header class="w3-container w3-blue" >
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Sans-serif; cursor: pointer;"><img style="border-radius: 50%; margin-right: 20px;" alt="J.Roberto" src="https://img.freepik.com/vetores-premium/avatar-de-homem-barbudo-foto-generica-de-perfil-masculino_53562-20202.jpg?w=2000" width="60px" height="60px">Mateus Rosa</h3>
</header>
<div class="w3-container w3-sand w3-card-4" >
<p class="w3-medium" style="color:#ff5563">a felicidade é uma borboleta, deveríamos pegá-la enquanto dançamos.</p>
<hr>Ago 15, 2023
<p ><span class="w3-hover-text-green"> Brazil</span>.</p>
</div>
</div>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Se ame mais!"</i></p>
<p>Iza Espanhol</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>
<p style="background-color: #009999;">I'm just trying to get my life together</p>
</div>
<!-- Message from Nikhil-->
<!-- Start Massage From Afsar Uddin -->
<div class="w3-row w3-container">
<div class="w3-col l12 m6 w3-yellow w3-container w3-padding-16">
<h3>Afsar UDDIN 😎</h3>
<h4>Thank you for amazing possibility to learn! People and Robots become closer to each others! 🦾❤️💪🏻 </h4>
</div>
</div>
<!-- End Massage From Afsar Uddin -->
<!-- Message from Ruan -->
<p>Santa Rosa do Sul</p>
<!-- End of message from Jo-->
<!-- Message from Rafael-->
<!-- Message from Murilo-->
<div class="Murilo">
<P>INTER CAMPEAO DA LIBERTADORES DE 2023</P>
</div>
<!-- Message from OHAIO-->
<!-- Message from Brazil -->
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-margin-right"></i>
Muito obrigado pelo tutorial, W3schools! Joédio Borges Jr. -> Araranguá-SC / Brasil</p>
</div>
<!-- end of message from Brazil-->
<!-- Message from DiogoBauer-->
<h2>só sei que nao sei, assinado: Rohzeu.</h2>
<!-- End Message from DiogoBauer-->
<!-- Message From Ana Carolina -->
<div style="background: #4287f5;">
<p>Amanhã é meu aniversario!</p>
<p>Oi todo mundo</p>
</div>
<!-- Message from Guilherme Ritter-->
<div id="jrggroberto" class="w3-card-4 w3-monospace msg-jrggroberto" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 80px; margin-top: 80px;" >
<div class="w3-center" >
<header class="w3-container w3-blue" >
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Sans-serif; cursor: pointer;"><img style="border-radius: 50%; margin-right: 20px;" alt="J.Roberto" src="https://img.freepik.com/vetores-premium/avatar-de-homem-barbudo-foto-generica-de-perfil-masculino_53562-20202.jpg?w=2000" width="60px" height="60px">Mateus Rosa</h3>
</header>
<div class="w3-container w3-sand w3-card-4" >
<p class="w3-medium" style="color:#005c99">O Superior passou por aqui</p>
<p class="w3-medium" style="color:#005c99">-Guilherme Ritter</p>
<hr>Ago 15, 2023
<p ><span class="w3-hover-text-green"> Brazil🇧🇷</span>.</p>
</div>
</div>
</div>
<h5>ola pessoas</h5>
<!-- Message from Lucas L. T.-->
<div>
<p>
I'm becoming a pro volleyball player!!
</p>
</div>
<!-- Message From MichelL-->
<div>
<img src="https://ghostcultmag.com/wp-content/uploads/Motely-Crue-1983-lg-banner-wikipedia-ghostcultmag.jpg" alt="mötley crüe muito pika">
<p>mötley crüe, melhoir banda do mundo rapaziada 🇧🇷 </p>
</div>
<!-- Message from MIGSTR-->
<h2>o frio é psicológico, ass: Riter</h2>
<!-- End Message from MIGSTR-->
<div>
<img src="https://assets.goal.com/v3/assets/bltcc7a7ffd2fbf71f5/blt7812996b1a1117d7/6495dcdda2447e2b4b3cabab/suarez_gremio.jpg?auto=webp&format=pjpg&width=3840&quality=60" alt="grêmio">
<p>ema</p>
<p style="background-color: #009999;"></p>
</div>
<!-- Message from Sasi -->
<div>
<div style="background-color: rgb(11, 94, 11); padding: 5px;margin: 10px; border-radius: 15px;">
<h1 style="font-family: cursive;">This is Sasi Lagisetti</h1>
<p style="color: #9ecfcf;">జీవితం అంటే నిన్ను నువ్వు చూసుకోవటం కాదు, నిన్ను నువ్వు రూపు దిద్దుకోవటం.</p>
<p style="color: #9ecfcf;color: #000; font-family: cursive;">A dream is not that which you see while sleeping, it is something that does not let you sleep.</p>
</div>
</div>
<!-- End Message From Sasi -->
<!-- Message from Joe -->
<div class="w3-container w3-green w3-round">
<p>Am I doing this right?</p>
<p>Hi Mom!</p>
<p>Joe</p>
</div>
<!-- End of message from Joe -->
<!-- Insert your message below here -->
<fieldset>
<legend>Se é Gaucho meu?</legend>
<div>
<input type="checkbox" id="scales" name="Obvio" checked />
<label for="Obvio">Obvio</label>
</div>
<div>
<input type="checkbox" id="Que" name="Que" />
<label for="Que">que é isso?</label>
</div>
</fieldset>
<div>
<h6>parararara pararara ...</h6>
</div>
<!--menssage from eduarda cunha -->
<p>por que não?</p>
<!--end-->
<!-- Message from Mateus Rosa-->
<div id="jrggroberto" class="w3-card-4 w3-monospace msg-jrggroberto" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 80px; margin-top: 80px;" >
<div class="w3-center" >
<header class="w3-container w3-blue" >
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Sans-serif; cursor: pointer;"><img style="border-radius: 50%; margin-right: 20px;" alt="J.Roberto" src="https://img.freepik.com/vetores-premium/avatar-de-homem-barbudo-foto-generica-de-perfil-masculino_53562-20202.jpg?w=2000" width="60px" height="60px">Mateus Rosa</h3>
</header>
<div class="w3-container w3-sand w3-card-4" >
<p class="w3-medium" style="color:#005c99">Faith in God that he is fair, Hey brother never forget, on guard, warrior raise your head trout, wherever you are, however it may be Have faith because even in the dump, flowers are born - Brown, Mano</p>
<hr>Ago 10, 2023
<p ><span class="w3-hover-text-green"> Brazil🇧🇷</span>.</p>
</div>
</div>
</div>
<!-- Message From Henrique -->
<div style="background-color:rgba(208, 202, 37, 0.7); padding:15px; border-radius: 10px;margin: 10px 5px;">
<p style="color: #001440;text-align: center;">Olá todos do w3schools e deste repositorio!,<br>
Eu agradeço a sinceramenta a <a style="text-decoration: none; color: #006633;" href="https://www.w3schools.com"> w3schools✨</a> for all their amazing and clear tutorials, it has been a humble and exciting path learning HTML, CSS, JavaScript and now Git & GitHub.<br>
Eu desejo a todos um boa apredizagem</p>
<p style="text-align: center;">- Henrique -</p>
</div>
<style>
.msg-jrggroberto:hover{
box-shadow: 30px 30px;
transform: scale(1.2);
transition: transform 0.5s ease-in;
}
</style>
<!-- End Message from Mateus Rosa -->
<!-- Message From Yuri Franco-->
<div style="background: #704dd1; background: -webkit-linear-gradient(to right, red, yellow, purple);
background: linear-gradient(to right, yellow, red, #8b1da7);color:#fff;
margin: 10px auto; text-align: center; border-radius: 15px; padding: 2em; width: 90%;">
<h2>Juntasso com os crias do W3school... 😁🤙</h2>
<p style="margin: 0 auto;">Yuri Franco, Brasa </p>
<time datetime="2023-01-23" >10th of Ago, 2023</time>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Cuidado que ai vem o saci."</i></p>
<p>Bigbig</p>
</div>
<!-- End Brasucaś messages -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Sou linda, me amo"</i></p>
<p>Lauzinha</p>
</div>
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"OMAGA, também te amo"</i></p>
<p>Zeus</p>
</div>
<!--End Lauandra messages-->
<!-- Message from Analog-->
<h1>Thank you for the course! - Analogkeyboard</h1>
<!-- End Message from Analog-->
<!-- Message From Wesley V. Kirchner-->
<div style="background: linear-gradient(135deg, rgb(167, 149, 96) 0%, rgb(149, 212, 212) 50%, rgb(45, 7, 25, 1) 100%); padding: 20px; border-radius: 5px;">
<div style="background-color: rgb(145, 132, 89); color: #1a1a1a; padding: 20px; border-radius: 5px; min-width: max-content; width: 50%; margin: auto; text-align: center;
box-shadow: rgba(189, 0, 214, 0.774) 0px 3px 8px;">
<p><b>Thank you w3schools! The fact I can learn Git for free online is legendary. You guys rock (Also thanks Bina for showing me this cool html gradient thing!). If you see this, call someone you love and tell them so <3</b></p>
<p>- Wesley V. Kirchner. Brasil(08/08/23)</p>
</div>
</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>
<!-- Message From Albi Nikolli-->
<div style="background-color:rgba(208, 202, 37, 0.7); padding:15px; border-radius: 10px;margin: 10px 5px;">
<p style="color: #001440;text-align: center;">Hello W3SCHOOLS and Everyone that are taking this path,<br>
I sincerely want to thank <a style="text-decoration: none; color: #006633;" href="https://www.w3schools.com"> w3schools✨</a> for all their amazing and clear tutorials, it has been a humble and exciting path learning HTML, CSS, JavaScript and now Git & GitHub.<br>
I wish everyone the best and all happiness,<br>
Piece,</p>
<p style="text-align: center;">- Albert Nikolli -</p>
</div>
<!-- Message From Gr4ph1c-->
<div style="background: linear-gradient(135deg, rgba(173, 130, 1, 1) 0%, rgba(44, 65, 19, 1) 50%, rgb(45, 7, 25, 1) 100%); padding: 20px; border-radius: 5px;">
<div style="background-color: rgb(255, 238, 182); color: #1a1a1a; padding: 20px; border-radius: 5px; min-width: max-content; width: 50%; margin: auto; text-align: center;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;">
<p><b>Thank you w3schools! The fact I can learn Git for free online is legendary. You guys rock (Also thanks Bina for showing me this cool html gradient thing!). If you see this, call someone you love and tell them so <3</b></p>
<p>- Matt, Northern Ireland. (08/08/23)</p>
</div>
</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>
<!--Message from Sunil Bhatt-->
<div style="text-align:center;color:yellow;">
<h3>Hello Everyone!. Thanks W3SCHOOL for teaching us all Git and Github .</h3>
</div>
<!-- massage form onepuch man -->
<p>
"i'll leave tomorrow problems to tommorow's me."
<span> -Saitama</span>
</p>
<!--end of massage by onepusch man-->
<!-- Message From Bina-->
<div style="background: linear-gradient(135deg, rgba(241,235,228,1) 0%, rgba(255,167,78,1) 43%, rgba(183,131,215,1) 100%); padding: 20px; border-radius: 5px;">
<div style="background-color: rgb(255, 255, 255); color: #1a1a1a; padding: 20px; border-radius: 5px; min-width: max-content; width: 50%; margin: auto; text-align: center;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;">
<p><b>Thanks for the tutorial!</b></p>
<p>Bina, Ukraine</p>
<p>22.07.2023</p>
</div>
</div>
<!-- End Messge from Bina-->
<!--Message from Ashutosh Vohra -->
<div style="text-align:center;color:pink;">
<h3>Hello Everyone From India. Thanks W3SCHOOL for teaching us all Git and Github .</h3>
</div>
<!-- Message from Harshal-->
<div>
<p>Thank you for making GIT and github easier</p>
</div>
<!-- Message from Fe in Colombia -->
<div>
<p>Parceros, parceros, como andamos! Gracias a w3school aprendí como usar git, y se lo agradezco mucho</p>
</div>
<!-- Message from another student -->
<div>
<p>"Thanks for these simple and effective tutorials."</p>
</div>
<!-- Message from another student -->
<div>
<p>"Takk."</p>
</div>
<!-- End of message from student -->
<!-- Message from Mieszko -->
<div style="background-image: linear-gradient(45deg, #f36, #a5f); border-radius: 30px; box-shadow: 0 0 15px rgba(0,0,0,0.4); color: white; text-shadow: 0 0 3px rgba(0, 0, 0, .8); padding: 20px;">
<h2 align="center" style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 30px;">Hi there! Greetings from Poland.</h2>
</div>
<!-- End of message from Mieszko -->
<!--Message from Simon-->
<div style=" background-color: yellow; margin: 30px 0px; border: 8px double green; border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr;"><div></div><div style="background-color: #fff; padding: 10px;">
<p>
Hello, greetings from Stuttgart
</p>
<p style="font-size: larger;"><b>Simon, Germany, 31.07.2023 </b></p></div><div></div>
</div>
<!-- End of Message from Simon -->
<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>
<!-- Message from Andrei in Georgia-->
<div style=" background-color: black; margin: 20px 0px; border: 5px double black; border-radius: 10px; display: grid; grid-template-columns: 1fr 1fr 1fr;"><div></div><div style="background-color: #fff; padding: 10px;">
<h3 style="display: flex; justify-content: center;"><u> SPECIAL APPRECIATION</u></h3><p>
❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️
</p>
<p>Here's my favourite quote by Dave Grey that has kept me going through out my web dev journey: <q>
<i> Remember to keep striving for success over perfection and a little progress everyday would go a very long way.
</i></q></p>
<p style="font-size: larger;"><b> 🇳🇬 🇳🇬 🇳🇬 Casmir - Nigeria (Wed 12 July, 2023) 🇳🇬 🇳🇬 🇳🇬</b></p></div><div></div>
</div>
<!-- End of Message from Andrei -->
<!-- Message from Sarthak -->
<div class="w3-container w3-light-blue w3-round-xlarge">
<p>I had loads of fun! Thanks w3schools! 💕</p>
<p><i>being part of my life</i></p>
</div>
<!-- End of Message from Sarthak -->
<!-- Message from Casmir in Nigeria -->
<!-- Testing Desktop Version -->
<div style=" background-color: green; margin: 20px 0px; border: 5px double black; border-radius: 10px; display: grid; grid-template-columns: 1fr 1fr 1fr;"><div></div><div style="background-color: #fff; padding: 10px;">
<h3 style="display: flex; justify-content: center;"><u> SPECIAL APPRECIATION</u></h3><p>
I took a life changing decision this year to learn web development and w3schools has been my back bone ever since. From the bottom of my heart, I sincerely appreciate the team members of this platform and I'm saying a big THANK YOU! to you all ❤️
</p>
<p>Here's my favourite quote by Dave Grey that has kept me going through out my web dev journey: <q>
<i> Remember to keep striving for success over perfection and a little progress everyday would go a very long way.
</i></q></p>
<p style="font-size: larger;"><b> 🇳🇬 🇳🇬 🇳🇬 Casmir - Nigeria (Wed 12 July, 2023) 🇳🇬 🇳🇬 🇳🇬</b></p></div><div></div>
</div>
<!-- End of Message from Casmir -->
<!-- Message from me to the world -->
<div>>
<p>"Hey y'all from Georgia, USA. Learning git is fun!"</p>
</div>
<!--Message from Ezequiel-->
<p>¡Saludos de Ezequiel desde Argentina!</p>
<p>Thanks for all your amazing tutorials!</p>
<!--Message from Hope in Nigeria-->
<div class="w3-container w3-light-blue w3-round-xlarge">
<p class="w3-xlarge w3-serif"><i>"Greetings from Hope in Nigeria"</i></p>
</div>
<!--End of Message from Hope-->
<!-- Message from Uzbekistan -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Hello from Uzbekistan!"</i></p>
</div>
<!-- Message from Julia -->
<div class="w3-container w3-light-blue w3-round-xlarge">
<p>I had loads of fun! Thanks w3schools! 💕</p>
<p><i>On their 3rd coffee, Julia</i></p>
</div>
<!-- End of Message from Julia -->
<!-- Message from DR Congo -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Hello from DR Congo👋🏽"</i></p>
</div>
<!-- Message from Federick Tiku, United Arab Emirate -->
<section class="first-sect py-5">
<div class="container">
<p> This week i did my first push from git to github, i am so happy</p>
</div>
</section>
<!-- End of message from Federick -->
<!-- message from VR2XHQ -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"I learn a lot from here. Thank you!"</i></p>
<p>Ben Yuen 05/07/2023</p>
</div>
<!--Message from Cristina -->
<div style="text-align:center;color:pink;">
<h3>Thank you 3WSchools for teaching me Git and GitHub.</h3>
</div>
<!--Message from Techie</>-->
<marquee width="60%" direction="up" height="100px">
Techie from 2023-07-11
</marquee>
<!--message form Diana -->
<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">Diana Demska 03/07/2023 (and btw thank you Chris for style and support for Ukraine)</p>
</div>
<!-- message from Larry -->
<h1>Thank you so much W3Schools. I am so grateful to be part of this</h1>
<!-- message from Simon -->
<div>
<h1 style="text-align: center; text-shadow: #000; color: green;"><strong>Sic parvis magna! Thank you, W3School! 07/06/23</strong></h1>
</div>
<!--thanks from maacr-->
<div><h1 style="text-align:center; color:green;">Thank You!</h1>
<h1 style="text-align:center;">
<img src="https://www.w3schools.com/images/w3schools_green.jpg" alt="W3Schools.com">
</h1></div>
<!--message form borodache -->
<div class="w3-container w3-2017-greenery w3-2017-golden-lime">
<p>thank you for your tutorial (30/6/23) by Eli Borodach</p>
</div>
<!--message form lordsharkie -->
<div class="w3-container w3-2017-greenery w3-2017-golden-lime">
<p>thank you for your tutorial (29/6/23)</p>
</div>
<div style="background-color: rgba(232, 129, 196, 0.414); color: aliceblue; border-radius: 8px;
font-family: Georgia, 'Times New Roman', Times, serif; text-align: center; line-height: 32px;
text-shadow: 0 0 2px #61cfe0;">
<h2>Thanks you</h2>
<p>Windy - VietNam (03/07/23)</p>
</div>
<!-- Message from Rafa Santana -->
<div style="background-color:rgba(4, 170, 109, 0.1);border:1px solid rgb(4, 170, 109);border-radius:16px;box-shadow:2px 2px 3px black;font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;margin:auto;padding:8px;width:80%;">
<ul style="columns:2;">
<li style="padding:6px;">Thanks for the tutorial!</li>
<li style="padding:6px;">In fact, thanks for all the tutorials!</li>
<li style="padding:6px;">Learning a lot from you!</li>
<li style="padding:6px;">Greetings from Brasil!</li>
</ul>
<p style="text-align:center;">Rafa Santana, 29/06/2023 💚</p>
</div>
<!-- End of Message from Rafa Santana -->
<!-- Message from Japan-->
<div class="w3-container w3-green w3-round-xlarge">
<p>thank you for your tutorials!! (Tetsu, 29th.June.2023)</p>
</div>
<!-- End of Message from Japan-->
<!-- Message from Dewan-->
<div class="w3-container w3-green w3-round-xlarge">
<p>thank you for your tutorials!! (Dewan, 24 july.2023)</p>
</div>
<!-- End of Message from Dewan-->
<!-- Message from BartoszPorosinski -->
<div class="w3-panel w3-yellow w3-bottombar w3-border-amber">
<p>Great Git tutorial from w3schools. Thanks!</p>
<p>BP 25.06.2023</p>
</div>
<!-- End of Message from BartoszPorosinski -->
<!-- Message from Frankie -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thank you for the tutorial!</i></p>
</div>
<!-- End of Message from Frankie -->
<!-- Greetings from France -->
<P>Greetings from France!</p>
<!-- Message from Bruno -->
<div class="w3-container w3-green w3-round-xlarge">
<p>Thank you for your support! (Bruno, June 21st, 2023)</p>
</div>
<!-- End of Message from Bruno -->
<!-- Monox Val from Pereira, Colombia -->
<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;">Monox Val</h3>
</header>
<div class="w3-container">
<p class="w3-large">Thank you w3schools 💖</p>
<hr>
<p class="w3-left-align">The best teaching materials are those who encourage hands on learning. Teaching about git and then allowing people to Pull Request to your repository it's a magnificient idea.</p>
<p class="w3-right-align">16.06.2023</p>
</div>
</div>
</div>
<!-- Monox Val from Pereira, Colombia -->
<!-- Hello From Nepal -->
<P>Hello from Nepal</p>
<!-- Message from David -->
<p>Thanks for the tutorial.</p>
<!-- Message from AlexMusk6 -->
<p>Thanks for the tutorial.🥳</p>
<!-- End of Message from AlexMusk6 -->
<!-- Message from Alex -->
<div class="w3-container w3-orange w3-round-xlarge">
<p>Thanks for the tutorial! (Alex, June 18th, 2023)</p>
<p>P.S. A joke about GitHub from Bing Chat:</p>
<p><i>"What do you call a GitHub user who likes to merge branches?" - "A git-together."</i></p>
</div>
<!-- End of Message from Alex -->
<P>Love From china.aaaa!!!!</p>
<!-- Message from David -->
<P>Hello world!</p>
<!-- End of Message from David -->
<!-- Message from Isabel -->
<div class="w3-container w3-teal w3-cursive w3-text-amber w3-round-xlarge">
<p>Thank you <span class="w3-2017-golden-lime">W3schools</span> for giving <strong>everyone</strong> the opportunity to learn how to code! <br>
<i>Thank you so much for this tutorial</i> 🥰
</p>
</div>
<!-- End Message from Isabel -->
<!-- Message from AbbanDabo -->
<div class="w3-container w3-green w3-round" style="margin: 20px auto;max-width: 50%;">
<h3>Thank you for a very nice tutorials.</h3>
<p>- AbbanDabo</p>
</div>
<!-- End of message from AbbanDabo -->
<!-- Message from Olha -->
<div class="w3-container w3-green w3-round">
<p>Thank W3Schools for a very nice tutorials.</p>
<p>It's a pleasure to study with you.</p>
<p>Olha</p>
</div>
<!-- End of message from Olha -->
<!-- Message start from Estanislau Gonçalves, Brasil, São Paulo, SP-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Be patient. All things are difficult before they seem easy."</i></p>
<p>Saadi Shirazi (1210-1291) </p>
</div>
<!-- Message end from Estanislau Gonçalves, Brasil, São Paulo, SP-->
<!-- Message from Maragk -->
<div class="w3-container w3-teal w3-cursive w3-text-amber w3-round-xlarge">
<p>Thank you <span class="w3-2017-golden-lime">W3schools</span> for giving <strong>everyone</strong> the opportunity to learn how to code! <br>
<i>so many tutorials ... so much to learn ... so awesome</i> 🥰
</p>
</div>
<!-- End Message from Maragk -->
<!-- Message from Martin-->
<div style="background:rgb(0, 0, 0);font-size:28px;padding:4px; border-radius: 20px;">
<p style="text-align:center;font-family:Cursive;color:rgba(241, 67, 67, 0.838);">
Greetings <span style="color:rgba(255, 255, 255, 0.838);">From</span> Peru🦙</br>
</p>
<p style="font-size: small;text-align:center;font-family:Cursive;color:rgba(255, 255, 255, 0.838);">
Martin Alvarez - June 08, 2023</br>
</p>
</div>
<!-- End Message Martin-->
<!--hello world, here doodoo-->
<div style='color:#ffffff;background:#04aa6d;padding:10px;border-radius:9px;'>
<div>
<p style="font-size:22px;font-weight:500;">Thanks w3school for letting us get access to your amazing coding courses. I learned a lot from you.</p>
<p style="padding-right:10px">Jerejef!</p>
</div>
</div>
<div style="padding-bottom: 5px;">
<img style="width:100px;height:100px;border-radius:180px" src="https://doos.w3spaces.com/doo-mii-copy-1.png">
<p>Doudou Fall -- Senegal</p>
</div>
<!-- Message from Ross -->
<P>Ross was here!</p>
<!-- End of Message from Ross -->
<!-- Message from Jia -->
<h5>Ross was here!</h5>
<!-- End of Message from Jia -->
<!-- Message from Stefan, Romania -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thank you for the tutorial!</i></p>
<p>Stefan Anica,Romania.</p>
</div>
<!-- End Message Stefan -->
<!-- Message from Aleksei -->
<div style="background:blue;font-size:28px;padding:4px">
<p style="text-align:center;font-family:Arial;color:lightblue;">
Aleksei wants his name on the wall too!
</p>
</div>
<!-- Message start from krishrx-->
<div style="background: lightgray;">
<p><i>Thanks for this awesome tutorial,Just loved it</i> <br>krishrx</p>
</div>
<!-- Message end from krishrx-->
<!--MEssage from Othman Seif,Tanzani-->
<div style="background:blue;font-size:28px;padding:4px">
<p style="text-align:center;font-family:cursive;color:green">
Jambo,Karibuni Tanzania na tunasema Hakuna Matata!!!!
</p>
<artilce>
Your Brother in Code</br>
2023, April 09</br>
Zanzibar,Tanzania</br>
</article>
</div>
<!-- Message from ArtemUlyanov, Israel -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>W3S! You Rock!</i></p>
<p>Artem Ulyanov, Israel</p>
</div>
<!-- End Message from ArtemUlyanov, Israel -->
<p> Run, Forrest, run! </p>
<!-- Message from Ashu-->
<div style="background:rgb(22, 221, 122);font-size:28px;padding:4px">
<p style="text-align:center;font-family:Cursive;color:rgba(159, 58, 58, 0.838);">
GoodMorning From India</br>
</p>
</div>
<!-- End Message Ashu-->
<div class="w3-panel w3-leftbar w3-sand">