forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
11365 lines (9685 loc) · 429 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 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 -->
<!-- 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 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 -->
<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>
<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 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>
</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-->
<!-- End Message from marcemarto -->
<!-- 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>
<p>Ebrahim Gamal</p>
<!-- End message from Ebrahim -->
<!-- Message from Dvir -->
<h1>Great tutorial! thanks aAlot!<3</h1></p>
<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 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 -->
"difuwlllllllllllll is coming"
<!-- 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>
<!--- Message from Al -->
<div>W3schools Git tutorial ❤</div>
<!-- End message fro Al -->
<!-- Message from TMcNabb -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: linear-gradient(0deg, #66FF99 0%, #66FFd9 100%); margin-top: 1em; margin-bottom: 1em;">
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #A020F0; text-shadow: 5px 5px 4px #808080;">"Saluton el Usono! "</p>
</div>
</div>
<!-- End Message from TMcNabb -->
<!-- Message from Mohammed Mofreh -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: linear-gradient(0deg, #66FF99 0%, #66FFd9 100%); margin-top: 1em; margin-bottom: 1em;">
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #A020F0; text-shadow: 5px 5px 4px #808080;">"Mohammed Mofreh! "</p>
</div>
</div>
<!-- End Message from Mohammed Mofreh -->
<div class="jedimchik"
style="border-radius: 30%;
justify-self: center;
background-color: whitesmoke;
border: 5px dashed rgba(155, 2, 2, 0.712);
width: 100%;
display: flex;
align-items: center;
justify-content: center;">
<div class="jedimchik"
style="border-radius: 30%;
background-color: whitesmoke;
border: 5px dotted rgba(255, 136, 0, 0.712);
width: 99.9999%;">
<h1 style="font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
/* width: 60%; */
margin: -8px;
border-radius: 30%;
text-decoration: none;
font-weight: 900;
color: whitesmoke;
background-color: rgba(155, 2, 2, 0.712);
text-align: center;
font-size: 5vw;">let the CONSISTENCY be with YOU !</h1>
</div>
</div>
<h2 style="justify-content: end;
text-align: right;
font-size: 1rem;
margin-top: -3px;
margin-right: 20px;">- jedimchik (05/03/2024)</h2>
<!-- Message from Nelu Gui-->
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-margin-right"></i>
Great experience with Git tutorial! Hello from Romania!
</p>
</div>
<!-- End of message from Nelu Gui -->
<!-- Message from Kevin in Taiwan -->
<h1>Thanks very much from Kevin in Taiwan for this helpful Git tutorial</h1>
<!-- End message Kevin in Taiwan -->
<!-- Message from Akhila from Germany -->
<h1>Vielen Dank W3!!</h1>
<!-- End message Akhila from Germany -->
<!-- Message from Hieu in VietNam -->
<h1>Thanks very much for this helpful Git tutorial</h1>
<!-- End message Hieu in VietNam -->
<!-- Message from Leo D'Hotman -->
<div style="background-color: beige; padding: 20px">
<h4>
Hi ! Fellow human ! Hope you're having a great day.
</h4>
<p>
Message from Leo D'Hotman (Mauritius)
</p>
</div>
<!-- Message from Leo D'Hotman-->
<!-- Message from Gobindo Chakraborty -->
<div style="background-color: bisque; padding: 20px; font-size: 2rem; ">
<p>
"I've started from html. Then I've learned css and also JavaScript. Now I'm learnig Git & GitHub.
At this momment I feel I'm fall in love with <b>w3shools tutorials."</b>
</p>
<p><i>- Gobindo Chakraborty from <b>Bangladesh</b></i></p>
</div>
<!-- End Message from Gobindo Chakraborty -->
<!-- Message from Yash -->
<div style="background-image: linear-gradient(HotPink, purple); margin: 0px;">
<p style="color: black">"I am gonna copy Max's message."</p>
<p style="font-size: 1vw; color:yellow; text-align:center;">"This page is meant to be available to everyone and this poem does not match that tone.<br>
Please change it to something more family friendly." </p>
<p style="color: green"> ~W3schools 19/02/2024</p>
<p style="color: red"> ~Max 13/02/2024 </p>
<p style="color:black"> ~Yash 26/02/2024 </p>
<!-- End message from Yash -->
<!-- Message from Johenx -->
<p>
This is Johenx.
This is fun
</p>
<!-- End message from Johenx -->
<!-- Message from Qusai-->
<div style="background-image: linear-gradient(HotPink, purple); margin: 0px;">
<p style="color: red"> Hello World. </p>
</div>
<!-- End message from Qusai-->
<!-- Message from Jakub -->
<h2>Hello from Czech Republic!</h2>
<!-- End message from Jakub -->
<!-- Start message from Paul -->
<h2>W3 Schools always delivers great help! Peace to all!</h2>
<!-- End message -->
<!-- Message from Yuri -->
<div>
<p>Anvedi come balla Nando! W3School ❤❤❤❤❤❤❤❤ u!</p>
</div>
<!-- End message from Yuri -->
<!-- Start message -->
<p>hello hello hello!</p>
<!--End message -->
<!-- Message from Fedor -->
<div>
<h2>Every soup eventually turns into mushroom soup.</h2>
</div>
<!-- End of message from Fedor -->
<!-- Message from Max -->
<div style="background-image: linear-gradient(HotPink, purple); margin: 0px;">
<p style="font-size: 1vw; color:yellow; text-align:center;">"This page is meant to be available to everyone and this poem does not match that tone.<br>
Please change it to something more family friendly." </p>
<p style="color: green"> ~W3schools 19/02/2024</p>
<p style="color: red"> ~Max 13/02/2024 </p>
</div>
<!-- End message from Max -->
<!-- Message from Santiaguito uwu -->
<p style="height: 50px; width: 100%; color: red; font-size: 30px;">Hola. Love w3school. AGUANTE ARGENTINA LOCO</p>
<!-- End message from Santiaguito uwu -->
<!-- Message from Jiawei -->
<div style="margin: auto;">
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: linear-gradient(0deg, #66FF99 0%, #66FFd9 100%); margin-top: 1em; margin-bottom: 1em;">
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #07f29c; text-shadow: 5px 5px 4px #808080;">"My motto: Small but certain happiness"</p>
</div>
</div>
<!-- End message from Jiawei-->
<!-- Start message from Arsalan -->
<h2>Continuous Learning is key to success!</h2>
<p>W3 Schools is a great place to build an understanding of basic web development skillsets. </p>
<!-- End message -->
<!-- Insert your message below here Liza -->
<h2>Hello everyone 👋<h2>
<p>My name is Liza and I am from Ukraine!</p>
<p>I am learning GitHub, and I'm going to be a Python developer.<br>
My respect W3Schools, and thanks for the awesome tutorial!</p>
<!-- End user messages liza -->`
<!-- Message from Wanghao-->
<div>
<div class="w3-container w3-round-large w3-card-4"
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #111;text-shadow: 5px 5px 4px #808080;">2024新年快乐!——王皓</p>
</div>
<!-- End message from Morse-->
<!-- Carlson I's message -->
<h1>A LITTLE MOTIVATION</h1>
<h2>Who am I and who could I be</h2>
<p>That which you most wish to find will be found where you least want to look.</p>
<p>Dedicate yourself to one or two things single mindedly and you will become unrecognisable in 6 months, all the best. /br Carlson I.</p>
<!-- End message from Carlson I -->
<!-- Message from David -->
<div style="display: flex; justify-content: center;">
<div class="w3-container w3-round-large w3-card-4 Davids-hover-effect"
style="margin: auto; width: 40%; background: linear-gradient(45deg, #1100ff 0%, #000000 100%); margin-top: 1em; margin-bottom: 1em; padding: 2em; border-radius: 20px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); transition: transform 0.3s;">
<p style="font-size: 30px; text-align: center; color: #ffffff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); font-family: 'Arial Black', sans-serif;">David from the Netherlands</p>
<p style="font-size: 20px; text-align: left; color: #ffffff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); font-family: 'Courier New', monospace; letter-spacing: 1px; line-height: 1.5;">Thanx w3schools for all the amazing tutorials!</p>
</div>
<style>
.Davids-hover-effect:hover {
transform: scale(1.05);
}
</style>
</div>
<!-- End message from David-->
<!-- Message from Morse -->
<div>
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: linear-gradient(0deg, #66FF99 0%, #66FFd9 100%); margin-top: 1em;margin-bottom: 1em;">
<p style="font-family: verdana; font-size: 40px; text-align: center; color: #111;text-shadow: 5px 5px 4px #808080;">"Everyone is at least a bit nosy, isn't it ?"</p>
<p style="font-size: 18px; text-align: center; color: #111;">-Kuromi chan</p>
</div>
</div>
<!-- End message from Morse-->
<!-- ANON -->
<div><h1>LET THEM KEEP GUESSING</h1>
<img src="img_guestbook_wall.jpg" alt=""></div>
<!-- start my message -->
<div class="my-container">
<h2 style="background-color: #2c3e50;color:white;padding: 10px;text-align: center;">Jai Shri Ram</h2>
<div style="background-color: purple;color: white;padding: 7px;">
<q>Talent is nothing without hard working</q> <i>- Cristiano Ronaldo</i>
</div>
<h2>Subroto Kumar</h2>
</div>
<!-- end my message -->
<!-- Start message from Ali -->
<h2>W3Schools.com is the Best place to Learn Web development</h2>
<p>My message to the world is you are wordering where to start learning front-end development
w3schools is the best website where you get everything you need.
</p>
<!-- End message -->
<!-- start message for Samson -->
<h1>Samson Githinji</h1>
<p>My skillset: MERN Stack | Python | SQLAlchemy</p>
<!-- end message for Samson -->
<!-- Start message -->
<p style="font-weight: bold; text-align: center; font-size: 32px;">Hello from Uzbekistan</p>
<!-- End message -->
<!-- Message from djbendek -->
<div class="w3-panel w3-light-green">
<p class="w3-xlarge w3-serif">
<i class="w3-green">"Nothing is more active than thought, for it travels over the universe, <br> and nothing is stronger than necessity for all must submit to it."</i>
</p>
</div>
<!-- End message from djbendek -->
<!-- Start message from YeBigTaco-->
<p>When you're feeling overwhelmed with a task just take a breath,
you'll probably find it easier once you come back to it.
</p>
<!-- End message from YeBigTaco-->
<!-- Start message -->
<p style="font-size:70px; font-family: Arial, Helvetica, sans-serif;color: #005bbb;">Greetings fellow learners from greater IRAN!</p>
<!-- End message -->
<!-- Start message -->
<p style="font-size:30px">You are now reading this <span style="color:red">line</span>.</p>
<!-- VIBHISHAN KUMAR INDIA 31-01-2024 -->
<!-- End message -->
<!-- Start message from wloerakving -->
<p>The seven cities of love became Attar</p>
<p>We are still at the corner of an Git tutorial</p>
<!-- End message from wloerakving -->
<!-- Start message -->
<p style="font-weight: bold; text-align: center; font-size: 32px;">Hi from Japan</p>
<!-- End message -->
<!-- Message from José Victor -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Everything is going to be okay in the end.<br> If it's not okay, it's not the end."</i>
</p>
</div>
<!-- End message from José Victor -->
<!-- Start message -->
<h3> Hey earthlings!</h3>
<!-- End message -->
<h1>Hello world!</h1>
<div><img src="img_hello_world.jpg" alt="Hello World from Space"
style="width:100%;max-width:960px"></div>
<p>This is the first file in my new Git Repo.</p>
<p>This line is here to show how merging works.</p>
<p>This is the first file in my new Git Repo.</p>
<p>This line is here to show how merging works.</p>
<div><img src="img_hello_world.jpg" alt="Hello World from Space" style="width:100%;max-width:960px"></div>
<p>This is the first file in my new Git Repo.</p>
<p>A new line in our file!</p>
<div><img src="img_hello_git.jpg" alt="Hello Git" style="width:100%;max-width:640px"></div>
<!--Message from Akpos-->
<div class="container">
<h1>Hi All!</h1>
<p>Learning Git has been an invaluable experience, and I'm grateful for the opportunity to deepen my understanding of version control. I'm excited to explore more now that i know what it entails.</p>
<p>Thank you to everyone who has contributed to making this course interesting to undertake. I look forward to connecting with you all!</p>
<p>Cheers,</p>
<p>Akpos Sakpere</p>
</div>
<!--End message from Akpos-->
<!-- Message from Jonathan -->
<p>Jonathan was here on 2024-01-27</p>
<!-- End message from Jonathan -->
<!-- Message form Nithin -->
<H4> Hi everyone! All the best for your git learning journery (Nithin, 24-01-2024) </H4>
<!-- End message forom Nithin -->
<!-- message from Vipin Karma -->
<p> Hey it's me Vipin Karma, Hope you guys doing well</p>
<!-- end message from Vipin karma-->
<p>Greetings from Georgia ❤ Thanks for an amazing course </p>
<p>Hello Wroldddddddddddd from Temi, I really appreciate this very well thoughtout course</p>
<p>Greetings from Man7788, enjoy your learning!</p>
<p>Thanks for a wonderful tutorial</p>
<!-- Message from Pzi -->
<h1>Call me <b>Pzipegasus</b></h1>
<p>Finally, Learned git and github was struggling since many days.</p>
<!-- thats all -->
<!-- message from Muhammad -->
<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 Muhammad -->
<!-- Message from Oded S. -->
<p><h2>Hello everyone,</h1></p>
<p><h3>Greetings from Oded S.</h3></p>
<p><h3>Thanks to W3Schools for a very helpful online course.</h3></p>
<!-- Ending message from Oded S. -->
<style>
.arshad-msg {
width: 90%;
font-size: 1.3rem;
padding: 10px;
margin: 40px;
text-align: center;
border: 5px solid rebeccapurple;
border-radius: 10px;
background-color: rgb(191 63 191 / 0.2);
color: rebeccapurple;
}
h1 {
font-size: 2rem;
text-decoration: underline;
}
h1:hover {
font-size: 3rem;
text-shadow: 2px 2px 3px red;
}
</style>
<!-- Message from Arshad -->
<div class="arshad-msg">
<h1>Hello Developers!</h1>
<p>I am Arshad from Pakistan, wishing you success in your journey.</p>
<p>The Git Tutorial is very simple and easy to understand, thanks to w3schools for such a great work.</p>
</div>
<!-- End Message from Arshad -->
<!--Message from Farhan Reza-->
<style type="text/css">
.farhan-container {
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto;
min-width: 50%;
max-width: 700px;
min-height: 500px;
border-radius: 250px;
border: 5px solid rgba(0, 0, 0, 0.25);
background-color:#282A35!important; color:#fff;
}
.farhan-h1 {
font-family: 'Freckle Face', cursive; font-size: 40px;
}
.farhan-link {
margin:10px auto;
background-color: #04AA6D;
color: white;
padding: 15px;
text-decoration: none;
font-size: 18px;
display: block;
width: 200px;
border-radius: 25px;
}
</style>
<div class="farhan-container">
<div style="text-align: center;">
<h1 class="farhan-h1">Hi, I am <span style="font-weight: 500;"><br>Farhan Reza</span>!</h1>
<h2><quote class="farhan-link">time is limited...</quote>-Anonymous</h2>
</div>
</div>
<!--End of message from Farhan Reza-->
<style>
.msg-nathaniel{
background: #C8C8C8;
text-align: center;
width: fit-content;
padding: 2rem;
border-top-left-radius: 30%;
border-bottom-right-radius: 30%;
box-shadow: 0 0 .5rem black;
}
.msg-nathaniel:hover{
transform: rotateY(380deg);
border: 2px solid black;
}
.msg-nathaniel p{
font-size: large;
text-shadow: 0 0 5px rgb(147, 147, 182);
}
.msg-nathaniel h1{
background: red;
color: #fff;
padding: 2px;
}
</style>
<!-- Message from shohidullah -->
<p><h1>Hi! i am shohidullah</h1></p>
<p><h4>I'm a student from Bangladesh</h4></p>
<!-- Ending message from Renan -->
<!--Message from Nathaniel-->
<div class="msg-nathaniel">
<h1>Hello! I'm Nathaniel (innCoding Tech Hub) from Nigeria</h1>
<p>With heart filled with gratitude i'm saying a big thank you to w3shools Team for the incomparible Tutorials </p>
</div>
<!--End Message from Nathaniel-->
<!--Message from Kevin-->
<section id="sectionk">
<article id="articlek">
<h2 id="h2k"><b>HELLO DEVS!🌍</b></h2>
<p id="pk">Hi everyone I'm kevin from Perú and I just want to say don't give up! The effort is worth it! (09/01/2024)</p>
</article>
<img id="imgk" src="https://img.freepik.com/fotos-premium/llama-machu-picchu-peru-sudamerica-lama-machu-picchu-ai-generada_538213-6156.jpg" alt="llama Peru" height="200px">
</section>
<style>
#sectionk{
margin-top: 30px;
background-color:#e9eff3;
overflow: hidden;
height: 250px;
}
#articlek{
float:left;
width:70%;
margin-top: 25px;
}
#imgk{
float:left;
width:250px;
margin-top: 25px;
margin-left: 50px;
}
#h2k, #pk{
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
text-align: center;
font-family: Comic;
}
</style>
<!--Ending message from Kevin-->
<!-- Message from Renan -->
<p><h1>Hi!</h1></p>
<p><h4>I'm a student from Brazil</h4></p>
<p><h4>I wish luck and prosperity to all of you! <3 </h4></p>
<!-- Ending message from Renan -->
<!--Message from Shalindra-->
<div style="background-color:gray; text-align: center; width:50% ; margin:0 auto">
<p>
<h3 style="color: white;"><i>Hi Everyone 👋</i></h3>
<h3 style="color: white;"><i>Welcome to this wonderful programming world 🙂</i></h3>
<img src="turned-gray-laptop-computer.jpg" alt="programming Img" width=300px >
</p>
</div>
<!--Ending message from Shalindra-->
<div style="height: 320px;
width: 540px;
background-color: rgb(17 24 39);
border-radius: 0.9rem;
box-shadow: rgba(17 12 46 0.15)
0px 48px 100px 0px;
color: white;
padding: 1.25rem;
margin: 150px auto;
line-height: 0.55;
font-family: ui-sans-serif, system-ui,
sans-serif;
font-size: 1.25em;
letter-spacing: 0.06rem;">
<div style="border-bottom: 1.5px solid
rgb(47 57 70);
padding: 0.75rem 1.5rem">
<div style="display: flex;
gap: 10px;
margin-bottom: 0.5rem;">
<div style="height: 0.85rem;
width: 0.85rem;
background-color:
rgb(245 101 101);
border-radius: 9999px;">
</div>
<div style="height: 0.85rem;
width: 0.85rem;
background-color:
rgb(250 240 137);
border-radius: 9999px;">
</div>
<div style="height: 0.85rem;
width: 0.85rem;
background-color:
rgb(104 211 145);
border-radius: 9999px;">
</div>
</div>
</div>
<div style="padding: .9rem 2rem">
<p>
<em style="color:
rgb(87, 151, 230);">const</em>
<span style="color:
rgb(255, 255, 255)
"> aboutMe</span>
<span style="color:
rgb(87, 151, 230)">=</span>
<em style="color:
rgb(87, 151, 230);
">function</em>( )
<spann> {</span>
</p>
<p>
<span style="color:
rgb(186, 108, 147)
">return</span>
{
</p>
<p> name :
<span style="color:
rgb(224, 208, 123)">'James B'</span> ,
</p>
<p> position :
<span style="color:
rgb(224, 208, 123)">'Self-Taught-Junior Dev'</span> ,
</p>
<p> Github :
<span style="color:
rgb(224, 208, 123)">'ordoabchao8'</span> ,
</p>
<p> }</p>
<p>}</p>
</div>
</div>