forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
12870 lines (11000 loc) · 535 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: 156x;
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>
<h2><b>GIT TUTORIAL GUESTBOOK</b></h2>
</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 Gusztav -->
<div style="align-items: center; justify-content: center; text-align: center; background-color: rgb(49, 51, 51);
font-family: 'Courier New', Courier, monospace; font-size: 16px; color: white; margin: 40px;">
<p>Great <span style="color: indianred;">guide</span>. Thanks <span style="color: rgb(0, 183, 255)">for the </span>tutorial.</p>
<p>Gusztav from <span style="color: #008000;">Hungary</span> 2024.09.09.</p>
</div>
<!-- End message from Gusztav -->
<!-- Message from umermatov -->
<div class="w3-panel w3-sand w3-leftbar">
<p>Hello from Uzbekistan!</p>
</div>
<!-- End message from umermatov -->
<!-- Message from Cecilio -->
<div class="w3-panel w3-sand w3-leftbar">
<p><i class="fa fa-quote-right w3-xxlarge w3-opacity"></i>
<span class="w3-serif w3-xlarge">
Great Tutorial! Keep up the good work ...</span> Cecili 2024-09-06</p>
</div>
<!-- End message from Cecilio -->
<div style="display: flex; align-items: center; justify-content: center; background-image: url(https://res.cloudinary.com/dkc8xrlg8/image/upload/v1725595346/dark-secrets/ascii-avatars/danse_macabre.png); background-position: 0px -100px; background-size: cover; min-width: 90vw; height: 80px; border: double green 2px; border-radius: 20px;">
<h2 style="font-family: monospace; color: green">6R33T1N65 FR0M C0L0M814!!</h2>
</div>
<div style="color:#0000FF">
<p>Thanks to W3Schools. This git course was easy to learn and informative.<br>
Happy learning everyone. Sean from Texas, US. </p>
</div>
<div>
<p>Hello, this is Atakan from Turkey.</p>
<p>September 4th, 2024.</p>
<div>
<h1>Praveen India</h1>
</div>
<!-- Message from me -->
<div class="con" style="
display: flex;
flex-flow: column wrap;
align-items: center;
background-color: #000;
color: #fff;
border-radius: 10px;
transition: color 0.5s ease-in;">
<h1>Thankfull to W3Schools💖</h1>
<p>This tutorial really help to clear my confusion about git and gitHub.</p>
</div>
<!-- Message end -->
<!-- start message from Mubashar Khalid from (PAKISTAN) -->
<div style="padding: 50px 0; border: 2px solid black; background-color: rgb(0, 56, 5); text-align: center;">
<h1 style=" color: white;">Greetings, I'm <span style="text-decoration: underline; text-decoration-color: red;">Mubashar Khalid</span> from Pakistan</h1>
<p style="font-size: 20px; font-weight: 500; color: white;"> Thank you W3 Schools for creating such an awesome course. Thanks a lot <span style="font-size: 50px; color: red;">♥</span>.</p>
<solid style="font-size: 50px;font-weight:500">🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰🇵🇰</solid>
</div>
<!-- end message -->
<!-- Message From someone -->
<div>
<p>Hello, I have nothing interesting to add, so Hi!</p>
</div>
<!--Message from itsmefminsaf-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Life isn't for enjoying. It's for exploring.."</i>
</p>
<p>itsmefminsaf</p>
</div>
<!-- Message From Soly -->
<!-- Message From Guillermo -->
<div style="
background-color:#009999;
border-radius:20px;
padding: 10px;
color:#203049;
justify-content: center;
width: max-content;"
>
<p>Hi there, just saying hello from Ecuador</p>
<p>land of mountains and jungle and nice people :)</p>
</div>
<!-- end of message-->
<!-- Message From Soly -->
<div>
<p>Hello, everyone I am Soly Coulibaly </p>
<p>glad to contributing.</p>
</div>
<!-- end of message-->
<!-- Message From Akash Barahate -->
<div>
<p>Hello, everyone I am Akash Barahate </p>
<p>glad to contributing.</p>
<p>So far i had great learning experiance on this platform. I want to thank you for providing such content for free.</p>
</div>
<!-- end of message-->
<! -- from Moshiur R (moshiurr007) --!>
<div style="width:80vh; height:40vh; background-color:black; color:white; font-size:30px; font-style:arial; padding:20px; text-align:center;">
<p> Hello, everyone. I am Moshiur R (moshiurr007) </p>
</div>
<div>
<h1>Message from Vivek.</h1>
<h2><b>glad to contributing.</b></h2>
</div
>
<div>
<h1>Message from Issac</h1>
<p><b>Hello Guys, I am glad learning github from W3 Schools wesbite</b></p>
</div>
<!--Message from Ali-->
<!--The Young Coder-->
<!-- Message from shushtain -->
<div class="w3-panel w3-leftbar w3-black">
<p class="w3-xxlarge w3-serif">
<i>“Make it as simple as possible, by following W3Schools.”</i></p>
<p>Artem Shush</p>
</div>
<!-- Message from a girl -->
<div>just learning git, thank to w3school</div>
<!-- message from JS-->
<div>Hello, I am learning git!</div>
<!-- Message from AS -->
<div>Hello from re-learing git basics!</div>
<!-- My Message -->
<div>
<p> that is my change</p>
<p>thanks for the tutorial</p>
</div>
<!-- message for 123.dev -->
<h4>Learning github contributions</h4>
<!-- End message from 123.DEV -->
<div>I don't know HTML send help</div>
<div>hello w3schools is very good for learning coding
</div>
<div> msg from pondy fff</div>
<!-- Message from some guy -->
<div>Hello everybody! Thanks to W3School!</div>
<!-- Messege from Md. Shanto Ujar -->
<div style="width:80%;
background-color:green;
border-radius:20px;
color:red;
font-size:40px;
box-shadow:2px 2px 8px rgba(60, 60, 60, .23);
">
<p>Hello from Bangladesh</p>
<p>🇧🇩🇧🇩🇧🇩🇧🇩🇧🇩</p>
</div>
<!-- Message from myrsine549 -->
<div style="background: cornflowerblue; color: white; padding: 20px; border-radius: 10px; width: fit-content;">
<h3>Thanks for walking me through how to use Git and GitHub!</h3>
<em>- myrsine549</em>
</div>
<!-- End Message from myrsine549 -->
<!-- Message from Rwanda -->
<!-- <div>
<h1>Hi guys, I am from Rwanda</h1>
<p>We should keep on coding guys. It's fun.</p>
<p>From EJ</p>
</div> -->
<div style="box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); padding: 2.5rem; border: 2px solid #9CA3AF; width: max-content; margin: 0 auto; border-radius: 0.75rem;">
<h1 style="font-size: 1.5rem; font-weight: 500; border-bottom: 1px solid; padding-bottom: 0.75rem;">Hi guys, I am from Rwanda</h1>
<p>We should keep on coding guys. It's fun.</p>
<p>From EJ</p>
</div>
<!-- Message from Matthew L-->
<div>
<h1>Thank you for an incredibly helpful tutorial!</h1>
</div>
<!-- Message from Adewale -->
<div class="d-flex flex-column p-20 ">
<div class="p-2 bg-info">
<h1> Roheem Wasiu Adewale</h1>
</div>
<div class="pt-2 bg-warning">
<h3>"Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday's code."</h3>
<h4>From Nigerian</h4>
</div>
<div class= "pb -100 bg-warning">
<img src="a.jpg" alt="coding from home" style="width:100%;max-width:1000px">
</div>
</div>
<!-- Message from Deep -->
<div style="padding: 15px; display: flex; background: #fcfdd7; border-radius: 5px; box-shadow: 5px 5px rgba(0,0,0,0.1); margin: auto; width: 500px; max-width: 90v; flex-direction: column; justify-content: center; align-items: center">
<p>Thanks a lot w3school, from Deep</p>
<br>
<img style="max-width: 300px; max-height: 300px; border-radius: 5px; object-fit: cover" src="https://t.ly/wl3HT">
</div>
<!-- End of message from Deep -->
<!-- Message from Ofurum -->
<div style="width: 100%; min-height: 200px; background-color: rgba(0, 0, 0, 0.466); padding: 30px; display: flex; flex-direction: column; align-items: center; margin: 20px auto; border-radius: 10px; color: white;">
<h1>Hello, W3school</h1>
<p>I am Ofurum from Nigeria</p>
<p>W3School has aided in my journey so far, thanks so much.</p>
<h1 style="font-size: 96px; color: red;">♥</h1>
</div>
<div class="w3-container" style="background-color: darkblue; border-radius: 60px; width: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto;">
<h2 style="color: white; text-transform: capitalize; text-align: center;">Thanks a lot for whole thing, it is awesome
</h2>
</div>
<!-- Message from Mohamed Adam from Sudan -->
<div style="padding: 50px 0; border: 2px solid black; background-color: #000; text-align: center;">
<h1 style=" color: white;">Greetings, I'm <span style="text-decoration: underline; text-decoration-color: red;">Mohamed Adam</span> from Sudan</h1>
<P style="font-size: 20px; font-weight: 500; color: white;"> Thank you W3 Schools for creating such an awesome course. Thanks a lot <span style="font-size: 50px; color: red;">♥</span>.</P>
</div>
<!-- end of message from Mohamed Adam -->
<!-- Message from Augusto -->
<div>
<h1>Greetings from Brazil </h1>
<h1>Thanks w3schools</h1>
<p>For making developers life much easier!
</div>
<div>
<h1>Hi, w3shools</h1>
</div>
<div>
Hello i'm from Kerala
</div>
<!-- Message from Roelof -->
<div>
<h1>Hello, my name is Roelof from the Netherlands!</h1>
<h1>Thanks w3schools</h1>
<p>For making developers life much easier! >
</div>
<!-- Message from Belgium -->
<div>
<h1>Thanks w3! <3 </h1>
</div>
<!-- start message from Sunil Mohan -->
<div style="font-family: Arial, sans-serif; background-color: #f4f4f4; padding: 20px; color: #333;">
<h2 style="color: #4CAF50;">Thanks a lot W3Schools !!!</h2>
<p style="font-size: 1.2em; line-height: 1.6;">Your Tutorials have played a pivotal role in my S/W journey since 2009.</p>
<p style="font-size: 1.2em; line-height: 1.6;">Thank you for providing such a great platform for continuous learning.</p>
<p style="font-size: 1.2em; line-height: 1.6;">Thanks & Regards, <br/> <br/> <B>Sunil Mohan</B></p>
</div>
<!-- end message from Sunil Mohan -->
<div id="iwnelion">
<p>hello from iwn</p>
</div>
<!-- Message from Panxr -->
<div>
<center>
<h1 style="color:#2e2712;">Thanks for the great tutorials W3Schools!</h1>
<h2 style="color:#2e2712;">You guys rock!</h2>
</center>
</div>
<!-- End of message from Panxr -->
<!-- Message from TaheranKhan -->
<div>
<h1>😍Hello, I am from India </h1>
<h1>Thanks w3schools</h1>
<p>For making developers life much easier! >
</div>
<!-- Message from Ted-->>
<div class="w3-panel w3-center w3-leftbar w3-sand">
<p><i class="w3-serif w3-xlarge">
<span style="font-size:150px;line-height:0.6em;opacity:0.2">✔</span>
Greetings from New Zealand!<br>
W3Schools is the best!</i></p>
</div>
<!-- Message from Slovakia-->>
<div class="w3-panel w3-center w3-leftbar w3-sand">
<p><i class="w3-serif w3-xlarge">
<span style="font-size:150px;line-height:0.6em;opacity:0.2">✔</span>
Greeting from Slovakia !<br>
Thank you for this helpful tutorial</i></p>
</div>
<!-- Message from Tarun -->
<div>
<h1>Thanks w3schools</h1>
<p>For making developers life much easier! :)>
</div>
<!-- Message from Kenneth -->
<div>
<h1>Obrigado w3schools</h1>
<p>Otimo tutorial para galera aprender muito do git e GitHub!!</p>
</div>
<!-- Message from mars -->
<div>
The year is 2040, and humanity has achieved what was once thought to be the stuff of science fiction: a manned mission to Mars. As the red planet reveals its secrets to the pioneering astronauts and scientists, an unexpected discovery sends shockwaves through the cosmos—a message from Mars.
Discovery and Deciphering
During an exploratory mission on the Martian surface, the astronauts stumble upon a mysterious artifact buried beneath the iron oxide sands. Initially thought to be a natural formation, closer inspection reveals it to be an ancient, technologically advanced device. Embedded within its crystalline structure is a series of complex patterns and symbols. The excitement is palpable as the team realizes they are on the verge of uncovering something extraordinary.
</div>
<!-- Message from Cristi, Republic of Moldova -->
<h2>Great tutorial, easy going, recommend doing every step showed.</h2>
<!-- end of message from Cristi -->
<div>github presentation</div>
<!-- start message from Matias -->
<div style="font-family: 'Segoe UI', sans-serif; background-color: #f4f4f4; padding: 20px; color: #333;">
<h2 style="color: #EB8921;">Greetings from Chilee. </h2>
<p style="font-size: 1.2em; line-height: 1.6;">Thank you W3Schools.</p>
<p style="font-size: 1.2em; line-height: 1.6;">for such a great platform for learning.</p>
<p style="font-size: 1.2em; line-height: 1.6;">Mati.</p>
</div>
<!-- end message from Matias -->
<!-- message from Erick Chaves Barreto -->
<div id="hugs-from-brazil-Erick" style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #C1C2C3; margin: 0;">
<div style="max-width: 800px; margin: 50px auto; padding: 20px; background-color: #C1C2C7; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);">
<h1 style="font-family: 'Arial Black', Arial, sans-serif; color: #000000;">Hugs from Brazil</h1>
<p style="color: #666; margin-bottom: 20px;">Taking this tutorial on 2024, and it still's helpful.
<p class="signature" style="font-style: italic; color: #777;">Erick Chaves Barreto</p>
</div>
</div>
<!-- Message from Egypt <3 -->
<div id="sendin-love-from-egypt" style="background: #DED4D8;padding: 10px;text-align: center;">
<h1 style="color: #856a22;font-weight: bold;text-shadow: 0 0 5px cyan;">You're A Life Saver <3</h1>
<p style="color:#c7395f;">Grateful for all the lessons, both big and small.The best way to learn "w3"</p>
<span style="color:#c7395f;">Mostafa Mabrouk from Egypt!</span>
</div>
<h1>Thanks W3S</h1>
<div><img src="https://upload.wikimedia.org/wikipedia/pt/f/fb/AcronimoCamisaFlamengo.png" alt="Hello World from Space"
style="width:100%;max-width:960px"></div>
<p>Flamengo is the best Futebol team</p>
<p>I'm La Rocque, greetings y'all!</p>
<h1>Assalamvalaikum</h1>
<h2>This is Mateen From India </h2>
<!--end of message from umesh-->
<div style="padding: 15px; display: flex; background: lightblue; border-radius: 5px; box-shadow: 5px 5px rgba(0,0,0,0.1); margin: auto; width: 500px; max-width: 90v; flex-direction: column; justify-content: center; align-items: center">
<p>Thanks W3C ! from Ash</p>
<br>
<img style="max-width: 300px; max-height: 300px; border-radius: 5px; object-fit: cover" src="https://i.ibb.co/DzCS6v3/image.png">
</div>
<!-- message from Specter -->
<div style="padding: 15px; display: flex; background: lightblue; border-radius: 5px; box-shadow: 5px 5px rgba(0,0,0,0.1); margin: auto; width: 500px; max-width: 90v; flex-direction: column; justify-content: center; align-items: center">
<p>Hello, Hala Madrid, support Real Madrid, watch football and enjoy coding! </p>
<br>
<img style="max-width: 300px; max-height: 300px; border-radius: 5px; object-fit: cover" src="https://i.ibb.co/DzCS6v3/image.png">
</div>
<!-- end of specters's message -->
<!--message from umesh -->
<div id="thank-you-message-from-umesh" style="font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f8f8f8; margin: 0; padding: 0;">
<div style="max-width: 800px; margin: 50px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; color: #333;">
<h1 style="font-family: 'Arial Black', Arial, sans-serif; color: #4CAF50;">Thank You</h1>
<p style="color: #666; margin-bottom: 20px;">Dear W3Schools, I want to express my gratitude for the incredibly informative content you provide. Your resources have been invaluable to me.</p>
<p style="color: #666; margin-bottom: 20px;">Best regards,</p>
<p class="signature" style="font-style: italic; color: #777;">Umesh</p>
</div>
</div>
<!--end of message from umesh-->
<!-- start message from Juha -->
<h2>This is a test from Juha from Turku, Finland!!!</h2>
<!-- end message from Juha -->
<!-- start message from Minal -->
<div class="w3-panel w3-center w3-leftbar w3-sand">
<p><i class="w3-serif w3-xlarge">
<span style="font-size:150px;line-height:0.6em;opacity:0.2">✔</span>
Hello World!!!<br>
My name is Minal.</i></p>
</div>
<!--end of message from Minal-->
<!-- start message from Rian -->
<div style="font-family: Arial, sans-serif; background-color: #f4f4f4; padding: 20px; color: #333;">
<h2 style="color: #4CAF50;">Thank You W3schools. </h2>
<p style="font-size: 1.2em; line-height: 1.6;">Your Tutorials have played a pivotal role in my Web-Development journey.</p>
<p style="font-size: 1.2em; line-height: 1.6;">Thank you for providing such a great platform for learning.</p>
<p style="font-size: 1.2em; line-height: 1.6;">Regards, Rian.</p>
</div>
<!-- end message from Rian -->
<!-- Begin of Message from Kwanghee Chu -->
<div class="w3-container">
<div style="text-align: center;">
<h3>Dokdo</h3>
<img src="https://i.namu.wiki/i/F7XU9Xmm44PKUe41T_lgJ5Z1VIa3nzBmbSW3A5W1a0HChLOQBQ5_IA9gIofLm-EW35qEHo21BpyVxfwpBAfsEkHus-06Wiu5Mcgh8f8ZNS9sL3jPz5xEIZ2g4DoEEbX1Ic7ma-m5pGnWOen8AaLoyw.webp"
alt="Dokdo">
<h4>W3Schools GitHub Test by Kwanghee</h4>
</div>
</div>
<!-- End of Message from Kwanghee Chu -->
<!-- message from Ibrahima Cissé -->
<h1>I AM IBRAHIMA CISSE AND ONE DAY I WILL DO GREAT THINGS</h1>
<!-- end Ibrahima's message -->
<!-- message form Shariq Yousuf -->
<div style="text-align: center; background-color: green; color: white; padding: 20px; margin: 10px;">
<h3>"Thank you w3schools for providing us what we need in web development journey."</h3>
<h5 style="font-style: italic; font-weight: bold; margin-top: 10px;">Shariq Yousuf <span style="font-style: normal; font-weight: normal; margin-left: 4px;"> from</span> Pakistan</h5>
</div>
<!-- end Shariq's message -->
<div style="padding: 20px; background-color: #ff0077; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center;">
<h2 style="color: #fff;">Siema, co tam? Byku, jak dziś forma? Wszyscy nagle tacy piękni, jak na bilbordach</h2>
</div>
<!-- message from nour -->
<div style="padding: 15px; display: flex; background: lightblue; border-radius: 5px; box-shadow: 5px 5px rgba(0,0,0,0.1); margin: auto; width: 500px; max-width: 90v; flex-direction: column; justify-content: center; align-items: center">
<p>heyyyyy! here's a chonky cat: ❤ from nour</p>
<br>
<img style="max-width: 300px; max-height: 300px; border-radius: 5px; object-fit: cover" src="https://i.ibb.co/DzCS6v3/image.png">
</div>
<!-- end of nour's message -->
<!-- Begin of Message from David C Lang -->
<div class="w3-container">
<div style="text-align: center;"
class="w3-panel w3-pale-yellow w3-leftbar w3-rightbar w3-border-yellow w3-border">
<h3>(^_^)</h3>
<h3>Hi, David here from the Island of the Philippines</h3>
<img src="https://upload.wikimedia.org/wikipedia/commons/9/99/Flag_of_the_Philippines.svg"
alt="Philippine Flag">
<time datetime="1734">Oldest map of the Philippine Islands — 1734</time>
<a
href="https://upload.wikimedia.org/wikipedia/commons/b/b5/Carta_Hydrographica_y_Chorographica_de_las_Yslas_Filipinas_Dedicada_al_Rey_Nuestro_Se%C3%B1or_por_el_Mariscal_d._Campo_D._Fernando_Valdes_Tamon_Cavall%C2%BA_del_Orden_de_Santiago_de_Govor._Y_Capn.jpg">
<img
src="https://upload.wikimedia.org/wikipedia/commons/b/b5/Carta_Hydrographica_y_Chorographica_de_las_Yslas_Filipinas_Dedicada_al_Rey_Nuestro_Se%C3%B1or_por_el_Mariscal_d._Campo_D._Fernando_Valdes_Tamon_Cavall%C2%BA_del_Orden_de_Santiago_de_Govor._Y_Capn.jpg"
alt="Philippine Map (1974)">
</a>
<caption>Includes islets in the West Philippine Sea</caption>
<h4>I appreciate the W3Schools for providing clean tutorials for learners like me.</h4>
<h3>(^L^)</h3>
</div>
</div>
<!-- End of Message from David C Lang -->
<!-- yet another message -->
<div>Hello everybody! Thanks to W3School!</div>
<!-- Message from omprakash -->
<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>
Thank you W3 for this helpful tutorial on git and github
</p>
</div>
<!-- End message from omprakash -->
<!-- yet another message -->
<div>Hello everybody! Thanks to W3School!</div>
<!-- Message from Dibyanshu -->
<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>
Thank you W3 for this helpful tutorial on git and github
</p>
</div>
<!-- End message from Dibyanshu -->
<!-- Message from Ruth -->
<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>
Thank you W3 for this helpful tutorial
</p>
</div>
<!-- End message from Ruth -->
<p> if you believe you can damage believe you can fix it, </p>
<!-- Message from mdaszuta -->
<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>
<!-- End message from mdaszuta -->
<p>Solukbenizli was here, thank you w2school :))</p>
<!-- yet another message -->
<div>Hello everybody! Thanks to W3School!</div>
<!-- Message from omprakash -->
<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>
Thank you W3 for this helpful tutorial on git and github </p>
</div>
<!-- End message from omprakash -->
<!-- Message from Kyle-->
<div>
<h1 style="border: #001440; border-radius: 50px; align-items: center; justify-content: center;"> "Perfection is not when there's nothing left to add, but when there's nothing left to take away." - Antoine de Saint-Exuery </h1>
</div>
<!-- End Message From Kyle-->
<!-- Message from Ruth -->
<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>
Thank you W3 for this helpful tutorial</p>
</div>
<!-- End message from Ruth -->
<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>
Thank you W3 for this helpful tutorial on git and github, I learned a lot.
</p>
</div>
<!-- Message from osbensaid -->
<div
style="padding: 20px; background-color: #0F1021; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center;">
<h2 style="color: #fff;">"Be patient. All things are difficult before they seem easy."</h2>
<p style="color: #fff; line-height: 1.6;">Oussama Bensaid (5/14/2024)</p>
<img src="https://media.tenor.com/NGrhh7bZIt0AAAAe/hero-sky-high.png" alt="you are hero" />
</div>
<!-- End Message from osbensaid -->
<!-- Message from Ned -->
<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>
Thank you for allowing me to contribute to your project
</p>
</div>
<!-- End message from Ned -->
<!-- Message from reiyua -->
<div class="w3-center w3-panel w3-card w3-large w3-xxxlarge">
Hello from Sydney, Australia!
<h2>Thanks for being a godsend during my academic studies a couple years ago!</h2>
</div>
<!-- End Message from reiyua -->
<!-- Message from Rodolfo -->
<h1>I don't know HTML, so this is probably going to look ugly.</h1>
</p>
<p>Rodolfo S.</p>
<!-- End message from Rodolfo -->
<!-- Message from Max -->
<div class="w3-center w3-panel w3-card w3-large w3-xxxlarge">
Hello from Germany
<h2>thanks for the great tutorial</h2>
</div>
<!-- End Message from Max -->
<!-- Message from yacov -->
<div class="w3-center w3-panel w3-card w3-large w3-xxxlarge">
Hello from Israel 💕
<h2>thanks for the awesome tutorial</h2>
</div>
<!-- End Message from yacov -->
<!-- Message from Sri Lanka -->
<div class="w3-center w3-panel w3-card w3-large w3-xxxlarge">
Hello from Sri Lanka 💕
<h2 style="color: red; font-family: sans-serif">Thanks for the awesome tutorial for w3School</h2>
</div>
<!-- End Message from yacov -->
<div class="w3-center w3-panel w3-card w3-large w3-xxxlarge">hello ladies</div>
<div style="margin: auto;">
<div class="w3-container w3-border-blue w3-center" style="margin: auto; width: 33%; background-color:#5f94b3;">
<p
style="font-family: Arial, Helvetica, sans-serif; font-size: 24px; text-align:center; color:#000; text-shadow: 5px 5px 5px #84fab0;">
'Be kind, it's my first try.' -JDB<br>Thanks W3 School!</p>
<div>
<div>Sir Jax</div>
</div>
<!-- Message from Mark La Mesa -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: radial-gradient( circle farthest-corner at 10% 20%, rgba(176,229,208,1) 42%, rgba(92,202,238,0.41) 93.6% );">
<p
style="font-family: cursive; font-size: 40px; text-align: center; color: #ebf020; text-shadow: 5px 5px 4px #808080;">
"Git some!"</p>
</div>
</div>
<!-- End Message from Mark La Mesa -->
<!-- message from Fabricio Ezequiel Marçal- Coutry Brazil -->
<div class="w3-blue w3-center w3-panel w3-card">
<p class="w3-jumbo" style="line-height: 0.1; text-shadow: 2px 3px #000;">Fabricio Ezequiel Marçal</p>
<p class="w3-xlarge">João Monlevade-MG, Brazil 2024 - Long live programmers</p>
</div>
<!-- Message from marcemarto -->
<div style="background-color:rgb(173, 174, 230); padding:15px; margin-left: 10%; margin-right: 10%; margin-bottom: 5px; border-radius: 15%; border-color: indigo; border-style: double;border-width: 15px; font-family: Georgia, 'Times New Roman', Times, serif;">
<p style="color:indigo; font-size:2rem; text-align:center;"><em><strong>W3Schools is the best<br>web developer site.</strong></em></p>
<p style="color:indigo; font-size:2rem; text-align:center;"><em><strong>This is best way<br>to use your time!</strong></em><br><span style='font-size:100px;'>⌚</span></p>
</div>
<!-- End Message from marcemarto -->
<!-- Message from Bastien -->
<h1>That was much easier than expected, thanks to w3schools!</h1>
<p>Bastien C</p>
<!-- End message from Bastien -->
<div style="background-color:lightgreen; padding:15px; margin-left: 5%; margin-right: 5%; border-radius: 15%; border-color: green; border-style: double; border-width: 15px; font-family: Georgia, 'Times New Roman', Times, serif;">
<p style="color:green; text-align:center;"><em><strong>marcemarto</strong></em></p>
</div>
<!-- Message from Ranguski-->
<div style="margin : 10px; background-color :powderblue; width : 100%; padding : 10px">
The quick brown fox jumps over the lazy dog
</div>
<!-- End Message from Ranguski-->
<!-- message from michaelaybm -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif">
<i>"Michael Bami Ayobami was here."</i>
</p>
<p>Thanks to w3schools for their relentless free training courses. They are so helpful</p>
</div>
<!-- Message from Jonathan Guevarra(4IS1) -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: radial-gradient( circle farthest-corner at 10% 20%, rgba(176,229,208,1) 42%, rgba(92,202,238,0.41) 93.6% );">
<p
style="font-family: cursive; font-size: 40px; text-align: center; color: #ebf020; text-shadow: 5px 5px 4px #808080;">
"Keep calm and keep code"</p>
<div style="text-align: center;">
<b>message from Jonathan Guevarra(4IS1)</b>
</div>
</div>
</div>
<!-- End Message from Jonathan Guevarra(4IS1) -->
<!-- Message from Marty -->
<h1>I'm learning Git, I like South Park, and I like puns, so my message is:</h1>
<div><img src="https://c.tenor.com/PsB0x1LHVasAAAAC/tenor.gif" alt="Go On, Git!" style="width:100%;max-width:640px"></div>
<!-- Message from Ebrahim -->
<h1>Nice journey , Thanks a lot <3 </h1>
<p>Ebrahim Gamal</p>
<!-- End message from Ebrahim -->
<!-- Message from Dvir -->
<h1>Great tutorial! thanks aAlot!<3< /h1>
<p>Dvir Zayde</p>
<!-- End message from Dvir -->
<!-- Message from Arthur -->
<h1>I wish everything was as easy as getting fat.</h1>
<p>Arthur Pan</p>
<!-- End message from Arthur -->
<!-- Message from hossein navabi -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4" style="margin: auto; width: 50%; background: linear-gradient(0deg, #128ad3 0%, #66FFd9 100%); margin-top: 1em; margin-bottom: 1em;">
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #ebf020; text-shadow: 5px 5px 4px #808080;">
“The earth has its music for those who will listen.” — Reginald Holmes</p>
<div style="text-align: center;">
<strong>message from hossein navabi</strong>
</div>
</div>
</div>
<!-- End Message from hossein navabi -->
<!-- Message from Vishal Singh -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4" style="margin: auto; width: 50%; background: linear-gradient(0deg, #128ad3 0%, #66FFd9 100%); margin-top: 1em; margin-bottom: 1em;">
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #ebf020; text-shadow: 5px 5px 4px #808080;">
“The earth has its music for those who will listen.” — Reginald Holmes</p>
<div style="text-align: center;">
<strong>message from Vishal Singh</strong>
</div>
</div>
</div>
<!-- End Message from Vishal Singh -->
<!-- Message from Nina -->
<h1>Thanks a lot for the helpful tutorial! :)</h1>
<!-- End message from Nina -->
<!-- Message from Amin -->
<h1>Hi, I am Amin Nadi Pour and i'd like to say git commit -m "hello world"</h1>
<!-- End message from Amin -->
<!-- Message from InHidayatullloh -->
<h1>Fiuh! Finally I am here. It's a long journey.</h1>
<!-- End message from InHidayatulloh -->
<!-- Message from glvcsmt -->
<h1>Hi! many thanks for the course, and the introduction to Git!</h1>
<h1>ps.: Love from Hungary! -glvcsmt</h1>
<!-- End message from glvcsmt -->
<!-- Message from Bryanik -->
<blockquote>
"One Day or Day One; You Decide..."
<footer style="font-style: italic; color: #c0c0c0;">- Brian Ike</footer>
</blockquote>
<!-- End of message from Bryanik -->
<!-- Message from Dingo#666-->
<h2>C'est la vie! Et c'est vraiment drole.</h2>
<!-- End of message from Dingo#666-->
<!-- Message from Zar -->
<div class="w3-panel w3-light-grey">
<span style="font-size:150px;line-height:0.6em;opacity:0.2">❝</span>
<p class="w3-xlarge" style="margin-top:-40px">
<i>Hey W3schools; ur the best <3</i>
</p>
<p>ZarKh</p>
</div>
<!-- End message from Zar -->
<!-- Message from Laila -->
<h1>Thanks for this course💗😎</h1>
<!-- End message from Laila -->
<h1>hello I'm Vijaykumar, Learning about git from w3schools</h1>
<!-- Message from Kyl3 -->
<div class="w3-col w3-purple w3-container w3-padding-16">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Face -->
<circle cx="50" cy="50" r="40" fill="yellow" stroke="black" stroke-width="2" />
<!-- Left eye -->
<circle cx="35" cy="40" r="5" fill="black" />
<!-- Right eye -->
<circle cx="65" cy="40" r="5" fill="black" />
<!-- Mouth -->
<path d="M 30 60 Q 50 80 70 60" fill="none" stroke="black" stroke-width="4" />
</svg>
<p>Happy Coding!</p>
</div>
<!-- End message from Ky13 -->
<p>"difuwlllllllllllll is coming"</p>
<!-- Message from ak -->
<h1>Nothin' beats being GUTS!</h1>
<!--End of message from ak -->
<!-- Message from Bharat -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>"Push through the pain. Giving up hurts more.”</i></p>
<p>- Vegeta, Dragon Ball Z</p>
</div>
<!--End of message from Bharat -->
<!-- message from varna -->
<p>Thank you w3 schools for the learning space</p>
<!-- end of message from varna -->
<!--Message from Jerry-->
<div id="jerry_id2"
style="margin: auto; width: 80%; height: 200px; background-color: #272727; border-radius: 25px; padding: 20px;">
<h2 id="jerry_id1"
style="text-align: center; text-decoration: none; font-size: 20px; color: #d9d9d9;">Jerry was
here.</h2>
<p style="color: #d9d9d9; text-align: center">Learned HTML, CSS, JavaScript (not done yet) and now
Git.<br>It's fun! One Month in and i got a lot in my Head already. Can't wait to get deeper into
everything.</p>
</div>
<style>
#jerry_id1 {
font-weight: 600;
transition: 300ms;
}
#jerry_id1:hover {
color: #d9d9d9;
transform: scale(1.25);
text-shadow: 1px solid white;
}
#jerry_id2 {
transition: 300ms;
}
#jerry_id2:hover {
transform: scale(1.1);
}
</style>
<!-- End Message from Jerry-->
<!-- Message from juli -->
<h1>Thanks fellows. See you on the top</h1>
<!-- End message from juli -->
<!-- Begin Rubii's humorous message -->
<div
style="font-family: Arial, sans-serif; background-color: #f0f0f0; border: 2px solid #ccc; padding: 20px; margin: 20px; border-radius: 10px; text-align: center; color: #333;">
<h2 style="margin-bottom: 15px;">😄 A Little Humor 😄</h2>
<p style="margin-bottom: 15px;">Hey W3Schools! Your tutorials are like a fine wine—improving with
age, but sometimes it's just easier to borrow the corkscrew! 😜 Thanks for the code snippets! P.S.
ChatGPT had a good laugh too!</p>
<div style="font-style: italic; font-size: smaller; color: #666;">- Rubii/AEM</div>
</div>
<!-- End Rubii's humorous message -->
<!-- Message from Felix -->
<div style="background-color: #f2f2f2; padding: 20px; border: 1px solid #ccc; border-radius: 5px;">
<p style="font-size: 20px; font-family: Arial, sans-serif; color: #333;">Hello I'm Felix from Kenya
a student at Karatina University!</p>
<p style="font-size: 18px; font-family: Arial, sans-serif; color: #666;">I'm thrilled to be
exploring W3Schools.</p>
<p style="font-size: 18px; font-family: Arial, sans-serif; color: #666;">Cheers!</p>
</div>
<!-- End Message from Felix -->
<!-- Message from Emilio -->
<div style="background-color: #365736; padding: 20px; border: 1px solid #8d5725; border-radius: 5px;">
<p style="font-size: 20px; font-family: Arial, sans-serif; color: #ffffcc;">Hi, I'm Emilio from
Argentina! Currently living in Patagonia, so lot of mountains and lakes over here.</p>
<p style="font-size: 28px; font-family: Arial, sans-serif; color: #248eb8;">What an excellent
tutorial is this</p>
<p style="font-size: 48px; font-family: Arial, sans-serif; color: #2b738f;">"The obstacle is the
way", just keep going!</p>
</div>
<!-- End Message from Felix -->
<!--Jean Nobrega's message -->
<div class="w3-col w3-light-grey w3-container w3-padding-16">
<p class="w3-xxlarge w3-times"> That was a so cool tutorial! Thanks from Brazil!</p>
Jean Nóbrega (Brazil)
</div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif">
<i>Thank you for your lessons w3schools</i>
</p>
<p>KRasta Smoke (Russia)</p>
</div>
<h1 style="background-color: #005c99; color: red; text-align: center;">W3 school is a best place to
get rid of tutorial hell.</h1>
<P> Learning git practically makes me grasp concepts easily ..........!</P>