-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
index.html
14328 lines (12406 loc) · 721 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 Pebble94464 -->
<p style="border: 2px solid green; padding: 1em">
My favorite color is <span style="color: green">GREEN</span>.
I love it more than <span style="color: blue">BLUE</span> and
<span style="color: yellow">YELLOW</span> combined.
</p>
<!-- End of message -->
<p>Thank you for your excelent training, <strong>chris.</strong></p>
<p> Hello world! Thanks for the Intro to GIT! </p>
<div style="
display: flex;
border: 1px solid black;
background-color: wheat;
">
Hi, I am Asim from INDIA.
<br>
Thanks w3schools.com
</div>
<p>Thank you for your excelent training, <strong>chris.</strong></p>
<p> Same message as above from Garv Malik </p>
<div style="
font-family: monospace;
background-color: white;
padding: 1rem;
margin-bottom: 1rem;
border: 0.1rem solid black;
border-radius: 0.8rem;
box-shadow: 0px 4px 0px gray;
word-spacing: 0.2rem;
">
<div style="
display: flex;
justify-content: start;
">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn3.iconfinder.com%2Fdata%2Ficons%2Fsocial-media-2169%2F24%2Fsocial_media_social_media_logo_git-1024.png&f=1&nofb=1&ipt=f8bdfe61d989ee3823c8efba07585b1261cb7b85fa145b6bf35736dd6fa122b4&ipo=images"
style="
width: 3em;
height: 3em;
margin: auto 1.2em auto 0;
" />
<h1 style="
font-family: monospace;
">
Let's GIT it on!
</h1>
</div>
<p>
If you don't know, now you know!
</p>
<p>
Greetings from The Netherlands!🇳🇱
</p>
</div>
<!-- ************************************** -->
<!-- message from Gedeon -->
<div style="text-align: center; background-color: blue; color: white; padding: 20px; margin: 10px;">
<h3>"Hello! (Muraho!). Gedeon from Rwanda, and The Gym Rwanda.<br>Visit Rwanda hhhh Amahoro!"</h3>
<h5 style="font-style: italic; font-weight: bold; margin-top: 10px;">Gedeon <span
style="font-style: normal; font-weight: normal; margin-left: 4px;"> from</span>
Rwanda.<br>Email: [email protected]</h5>
</div>
<!-- Gedeon's message end -->
<!-- ************************************** -->
<!-- Message from Anastasiikk -->
<p>Thank you for making the hard stuff easy to understand and fun to learn!</p>
<!-- End message from Anastasiikk -->
<!-- Message from Mickael -->
<div style="
font-family: monospace;
background-color: lightgoldenrodyellow;
padding: 1rem;
margin-bottom: 1rem;
border: 0.5rem solid black;
word-spacing: 0.2rem;
">
<h1 style="
font-family: monospace;
">
Helloww world !! 🐰
</h1>
<p>
I love spending my time on W3Schools :3. <br>
Here, the way they explain things is so clear
that even the hard stuff become easy and fun to
learn ! Thank you for existing W3schools
<3 <3.
</p>
<div style="
text-align: right;
border-right: 0.3rem solid black;
padding-right: 1rem;
">
<p><i>
Mickael from Madagascar<br>
22nd Tuesday October 2024
</i></p>
</div>
</div>
<!-- End message from Mickael -->
<!-- Message from Andrian Wu-->
<style>
#special-section {
font-family: 'Arial', sans-serif;
background-color: #1c1f26;
color: #ecf0f1;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
#special-h1 {
font-size: 50px;
color: #e67e22;
margin: 0;
letter-spacing: 2px;
font-weight: bold;
opacity: 0;
transform: translateY(-20px);
animation: fadeIn 1s forwards;
}
#special-p {
font-size: 22px;
color: #bdc3c7;
margin-top: 15px;
opacity: 0;
transform: translateY(20px);
animation: fadeIn 1s forwards;
animation-delay: 0.5s;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
#special-h1:hover {
color: #f39c12;
}
#special-p:hover {
color: #ecf0f1;
}
</style>
<div id="special-section">
<h1 id="special-h1">Hi from Andrian Wu</h1>
<p id="special-p">learning step by step everyday</p>
</div>
<!-- End message from Andrian Wu-->
<!-- message from achraf Morocco -->
<div>
<h2>Life is too short </h2>
<p>live her with the way u are</p>
</div>
<!-- end of message from achraf -->
<!-- Message from Husam-->
<div>
<h1>Message from Husam</h1>
<p>Hello from the Jordan!</p>
</div>
<!-- End message from Husam -->
<!--Message from Deore-->
<p>Greetings from Warsaw!</p>
<!--End of message from Deore-->
<!--Message from Ryan-->
<p>G'Day from Australia!</p>
<!--End of message from Ryan-->
<!-- Message from Michael -->
<p>Thank you for making the hard stuff easy to understand and fun to learn!</p>
<!-- End message from Michael -->
<!-- message from rifqy -->
<h3>Hey i'm currently lear git!!</h3>
<!-- end message from rifqy -->
<!-- Message from gallus -->
<div>
One step at a time.
<br>
No need to rush.
<br>
No need to be anxious.
<br>
Just dive in.
</div>
<!-- End gallus message-->
<!-- Start: Message from Gemma -->
<div style="padding:0px 0px 10px 10px;margin:10px 0px;border:3px solid #008b8b;">
<p style="font-family:Arial,Helvetica,sans-serif;">Hi from Gemma in Sheffield, England 🙂 😸
😀</p>
<img src="http://gemmasmithurst.com/gcrs.png" width=100 />
</div>
<!-- End: Message from Gemma -->
<!-- message from Jeremy -->
<p>I wanted to get back to the basics this is very helpful to understanding git</p>
<!-- end message from Jeremy-->
<!-- Message from Reed -->
<p>I learned git for fun one night. Then I taught 2 friends how to use git for a unity game.</p>
<!--End message from Reed -->
<!-- Message from Melissa-->
<style>
.MelP {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-template-rows: 0;
width: 100%;
background: linear-gradient(135deg, #393e41ff, #d3d0cbff, #e2c044ff, #587b7fff, #1e2019ff);
border: solid 1px #1e2019ff;
height: 80px;
}
.Mel {
height: 80px;
display: flex;
justify-content: center;
align-items: center;
font-size: 64px;
width: 100%;
transition: background 1.5s;
}
.Mel2 {
height: 70px;
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
width: 100%;
}
.Mel:hover {
background: radial-gradient(#393e41ff, #d3d0cbff, #e2c044ff, #587b7fff, #1e2019ff);
color: white;
transition: 0.2s;
}
</style>
<div class="MelP">
<div class="Mel">M</div>
<div class="Mel">E</div>
<div class="Mel">L</div>
<div class="Mel">I</div>
<div class="Mel">S</div>
<div class="Mel">S</div>
<div class="Mel">A</div>
</div>
<div class="Mel"><span>Thank you soo much W3School for everything</span></div>
<div class="Mel2">And thank you very much Fabián for your super lettering trick!!! </div>
<p>The European languages are members of the same family. Their separate existence is a myth.
For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their
grammar,.</p>
<!-- Start Thsls message -->
<div style="text-align: center;">
<span style="color: maroon; font-weight: bold; font-size: large;"> 🇱🇰 Hello</span>
<span style="color: #f2be03; font-weight: bold; font-size: large;">From</span>
<span style="color: green; font-weight: bold; font-size: large;">Sri</span>
<span style="color: orange; font-weight: bold; font-size: large;">Lanka 🇱🇰</span>
<br>
<span>❤︎ W3Schools</span>
<hr>
</div>
<!-- End Thsls message -->
<p>Greetings from Philadelphia!</p>
<!-- End user message -->
<!-- Start Eds message -->
<div style="text-align: center;">
<span
style="color:black; font-weight:bold; text-decoration-line:underline; text-decoration-style:double;">Hello</span>
<span
style="color:red; font-weight:bold; text-decoration-line:underline; text-decoration-style:double;">from</span>
<span
style="color:gold; font-weight:bold; text-decoration-line:underline; text-decoration-style:double;">Germany</span>
<br>
<span class="txt">(づ ◕‿◕ )づ thx 4 the great tutorial</span>
</div>
<!-- End Eds message -->
<!--Message from Carl-->
<div class="w3-row">
<div class="w3-col-12 w3-bg-info">
<br>
<h2>Thanks w3s.<br> I finally see those things I just could not quite get before</h2>
<span><cite>Carl from Boston</cite> </span>
<br>
</div>
</div>
<!--End of message from Carl-->
<!--Message from Prabhjot-->
<div class="w3-row">
<div class="w3-col-12 w3-bg-info">
<br>
<h2>Thanks W3Schools for everything!</h2>
<span><cite>Prabhjot Arora from India ❤️</cite> </span>
<br>
</div>
</div>
<!--End of message from Prabhjot-->
<p>Hello everyone, here a funny knowhow:
Did you know that camels have 3 eyelids to protect their eyes from blowing sand.</p>
<!-- Message from dolfdiop -->
<div class="w3-panel w3-sand w3-leftbar">
<p>Hello everybody, Really enjoy learning from w3school especially this git/github course, Keep up the
good work, diffusing knowledge around the world</p>
</div>
<!-- End message from dolfdiop -->
<!-- Mensaje de Fabián -->
<style>
.fab {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: 0;
width: 100%;
background: #000000;
border: solid 1px black;
height: 80px;
}
.fabL {
height: 80px;
display: flex;
justify-content: center;
align-items: center;
font-size: 64px;
width: auto;
transition: background 1.5s;
}
.fabL:hover {
background: #6d6df3;
color: white;
transition: 0.2s;
}
</style>
<div class="fab">
<div class="fabL">F</div>
<div class="fabL">A</div>
<div class="fabL">B</div>
<div class="fabL">I</div>
<div class="fabL">Á</div>
<div class="fabL">N</div>
</div>
<div>
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif">
<i>"Make it as simple as possible, but not simpler."</i>
</p>
</div>
</div>
<div>
<p>Hello, I am Michael</p>
<p>Writing from Oetwil, near Zurich</p>
<p>Thanks for your tutorial! It was great to learn from.</p>
</div>
<!-- Message from Taofeek-->
<div
style="background-color: #628ce8; border: 0.5px solid rgb(248, 170, 13); border-radius: 3px; align-items: center; justify-content: center;text-align: center;">
<h2>Taofeek From Nigeria. So Excited for the completion of this Git and Github Course</h2>
</div>
<!--End Message from Taofeek -->
<!--Message from CHERNANDEZ-->
<div class="w3-row">
<div class="w3-col-12 w3-bg-info">
<h2>Vamos, todos tenemos errores y el no perdonar es causa de tantas tumbas sin flores</h2>
<span><cite>-Cancerbero</cite>
<blockquote>chernandez</blockquote>
</span>
</div>
</div>
<!--End of message from CHERNANDEZ-->
<!--Message from IXVM-->
<div class="ixvm-block" style="display: flex; flex-direction: column; align-items: center;">
<div
style="text-align: center; display: block; border: 2px; width: 200px; margin-bottom: 15px; border-radius: 5px; box-shadow: 0px 0px 20px; padding: 10px; align-items: center;">
<p style="font-weight: bold; font-size: 20px;">Eat 🍴</p>
<p style="font-weight: bold; font-size: 20px;">Sleep 💤</p>
<p style="font-weight: bold; font-size: 25px; border: 2px solid;border-radius: 20px;">CODE 💻</p>
<p style="font-weight: bold; font-size: 20px;">Repeat ♻️</p>
</div>
<p style="text-align: center;"><i>The journey of a programmer begins by one keystroke or two or...</i>
</p>
</div>
<!--End of message from IXVM-->
<!-- Message from Faiz-->
<div
style="background-color: #0000FF; border: 1px solid black; border-radius: 10px; align-items: center; justify-content: center;text-align: center;">
<h3>Hello from <span style="color:red" ;>Faiz</span></h3>
</div>
<!--End Message from Faiz -->
<!-- Start block from Anna -->
<div
style="width:30%; margin:0 auto; border: 1px solid grey; font-size:18px; padding: 20px; border-radius:5px; text-align:center;">
Hello everyone! Greetings from Anna. <br>
<b>W3schools, thanks for great tutorials!</b> <br>
<p style="text-align:right; margin: 0;">12/09/2024</p>
</div>
<!-- End block from Anna -->
<!-- Start block from Anna2 -->
<div
style="width:30%; margin:0 auto; border: 1px solid grey; font-size:18px; padding: 20px; border-radius:5px; text-align:center;">
God Bless you all! <br>
<b>W3schools thank you!</b> <br>
<p style="text-align:right; margin: 0;">12/09/2024</p>
</div>
<!-- End block from Anna2 -->
<!-- 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: rgb(124, 76, 76);">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 CodedWriter -->
<style>
.cw-heading,
.cw-text {
text-align: center;
font-size: 2rem;
font-family: "Lato", sans-serif;
position: relative;
margin: 2rem 0 0.5rem 0;
font-weight: 900;
}
.cw-heading::before {
position: absolute;
content: attr(data-key);
background: repeating-linear-gradient(45deg, #11b5dd 0px, #11b5dd 2px, transparent 2px, transparent 4px);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
z-index: -1;
transform: translate(2px, 2px);
}
.cw-text {
font-size: 1rem;
margin: 0 0 2rem 0;
}
</style>
<div>
<h2 class="cw-heading" data-key="Greetings from the Coded Writer">Greetings from the Coded Writer</h2>
<p class="cw-text">Hello Everyone! I'm glad to be contributing to this and I commend the w3schools team
for putting together this comprehensive tutorial.</p>
</div>
<!-- End message from CodedWriter -->
<!-- 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>
<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>
<!-- My Update on programming. Just exploring Git/Github-->
<h5>I am currently learning Rust and need to revist my skills on Git and Github from w3schools</h5>
<h5>Sorry, i am not a front-end developer, i would have added a bad ass effect here</h5>
<!-- 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