forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
6316 lines (5338 loc) · 253 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Git Tutorial Guestbook</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Satisfy">
<link href="https://fonts.googleapis.com/css2?family=Crafty+Girls&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster&effect=shadow-multiple">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-colors-2017.css">
<link href="https://fonts.googleapis.com/css2?family=Geologica&display=swap" rel="stylesheet">
<style>
html,body,h1,h2,h3,h4 {font-family:"Lato", sans-serif}
.w3-tag {height:15px;width:15px;padding:0;margin-top:6px;cursor:pointer}
</style>
</head>
<body>
<!-- Content -->
<div class="w3-content" style="max-width:1920px;margin-top:40px;margin-bottom:40px">
<div class="w3-panel">
<h1><b>GIT TUTORIAL GUESTBOOK</b></h1>
</div>
<!-- Slideshow -->
<div class="w3-container">
<div class="w3-display-container">
<img src="img_guestbook_wall.jpg" alt="Image from Nicolas Dmítrichev via unsplash.com" style="width:100%">
<div class="w3-display-topleft w3-container w3-padding-32">
<span class="w3-white w3-padding-large w3-animate-bottom">Share your message with the community</span>
</div>
</div>
</div>
<!-- Grid -->
<div class="w3-row w3-container">
<div class="w3-center w3-padding-64">
<span class="w3-xlarge w3-bottombar w3-border-dark-grey w3-padding-16">What is This?</span>
</div>
<div class="w3-col l3 m6 w3-light-grey w3-container w3-padding-16">
<h3>Learn</h3>
<p>Learn how to use Git and GitHub from our <a href="https://www.w3schools.com/git/default.asp" title="w3schools.com Git Tutorial" target="_blank" class="w3-hover-text-green">Git Tutorial</a>.</p>
</div>
<div class="w3-col l3 m6 w3-grey w3-container w3-padding-16">
<h3>Change</h3>
<p>Fork and Clone this <a href="https://github.com/w3schools-test/w3schools-test.github.io" title="Guestbook Git Repository" target="_blank" class="w3-hover-text-green">GitHub repository</a>, to your local Git or GitHub account.</p>
</div>
<div class="w3-col l3 m6 w3-dark-grey w3-container w3-padding-16">
<h3>Collaborate</h3>
<p>Add a message, following the guidelines from the <a href="https://github.com/w3schools-test/w3schools-test.github.io" title="Guestbook Git Repository" target="_blank" class="w3-hover-text-green">README.md</a>.</p>
</div>
<div class="w3-col l3 m6 w3-black w3-container w3-padding-16">
<h3>Contribute</h3>
<p>Add a <a href="https://github.com/w3schools-test/w3schools-test.github.io/pulls" title="GitHub Pull Request" target="_blank" class="w3-hover-text-green">pull request</a>, and see if your change gets approved and added below!</p>
</div>
</div>
<!-- Grid -->
<div class="w3-row-padding" id="about">
<div class="w3-center w3-padding-64">
<span class="w3-xlarge w3-bottombar w3-border-dark-grey w3-padding-16">Leave A Message</span>
</div>
<!-- Insert your message below here -->
<!-- Message from Rafa Santana -->
<div style="background-color:rgba(4, 170, 109, 0.1);border:1px solid rgb(4, 170, 109);border-radius:16px;box-shadow:2px 2px 3px black;font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;margin:auto;padding:8px;width:80%;">
<ul style="columns:2;">
<li style="padding:6px;">Thanks for the tutorial!</li>
<li style="padding:6px;">In fact, thanks for all the tutorials!</li>
<li style="padding:6px;">Learning a lot from you!</li>
<li style="padding:6px;">Greetings from Brasil!</li>
</ul>
<p style="text-align:center;">Rafa Santana, 29/06/2023 💚</p>
</div>
<!-- End of Message from Rafa Santana -->
<!-- Message from Japan-->
<div class="w3-container w3-green w3-round-xlarge">
<p>thank you for your tutorials!! (Tetsu, 29th.June.2023)</p>
</div>
<!-- End of Message from Japan-->
<!-- Message from BartoszPorosinski -->
<div class="w3-panel w3-yellow w3-bottombar w3-border-amber">
<p>Great Git tutorial from w3schools. Thanks!</p>
<p>BP 25.06.2023</p>
</div>
<!-- End of Message from BartoszPorosinski -->
<!-- Message from Frankie -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thank you for the tutorial!</i></p>
</div>
<!-- End of Message from Frankie -->
<!-- Greetings from France -->
<P>Greetings from France!</p>
<!-- Message from Bruno -->
<div class="w3-container w3-green w3-round-xlarge">
<p>Thank you for your support! (Bruno, June 21st, 2023)</p>
</div>
<!-- End of Message from Bruno -->
<!-- Monox Val from Pereira, Colombia -->
<div class="w3-card-4 w3-monospace" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 100px;">
<div class="w3-center">
<header class="w3-container w3-light-grey">
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Lobster', Sans-serif; cursor: pointer;">Monox Val</h3>
</header>
<div class="w3-container">
<p class="w3-large">Thank you w3schools 💖</p>
<hr>
<p class="w3-left-align">The best teaching materials are those who encourage hands on learning. Teaching about git and then allowing people to Pull Request to your repository it's a magnificient idea.</p>
<p class="w3-right-align">16.06.2023</p>
</div>
</div>
</div>
<!-- Monox Val from Pereira, Colombia -->
<!-- Hello From Nepal -->
<P>Hello from Nepal</p>
<!-- Message from Alex -->
<div class="w3-container w3-orange w3-round-xlarge">
<p>Thanks for the tutorial! (Alex, June 18th, 2023)</p>
<p>P.S. A joke about GitHub from Bing Chat:</p>
<p><i>"What do you call a GitHub user who likes to merge branches?" - "A git-together."</i></p>
</div>
<!-- End of Message from Alex -->
<P>Love From china.aaaa!!!!</p>
<!-- Message from David -->
<P>Hello world!</p>
<!-- End of Message from David -->
<!-- Message from Isabel -->
<div class="w3-container w3-teal w3-cursive w3-text-amber w3-round-xlarge">
<p>Thank you <span class="w3-2017-golden-lime">W3schools</span> for giving <strong>everyone</strong> the opportunity to learn how to code! <br>
<i>Thank you so much for this tutorial</i> 🥰
</p>
</div>
<!-- End Message from Isabel -->
<!-- Message from Olha -->
<div class="w3-container w3-green w3-round">
<p>Thank W3Schools for a very nice tutorials.</p>
<p>It's a pleasure to study with you.</p>
<p>Olha</p>
</div>
<-- End of message from Olha -->
<!-- Message start from Estanislau Gonçalves, Brasil, São Paulo, SP-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Be patient. All things are difficult before they seem easy."</i></p>
<p>Saadi Shirazi (1210-1291) </p>
</div>
<!-- Message end from Estanislau Gonçalves, Brasil, São Paulo, SP-->
<!-- Message from Maragk -->
<div class="w3-container w3-teal w3-cursive w3-text-amber w3-round-xlarge">
<p>Thank you <span class="w3-2017-golden-lime">W3schools</span> for giving <strong>everyone</strong> the opportunity to learn how to code! <br>
<i>so many tutorials ... so much to learn ... so awesome</i> 🥰
</p>
</div>
<!-- End Message from Maragk -->
<!-- Message from Martin-->
<div style="background:rgb(0, 0, 0);font-size:28px;padding:4px; border-radius: 20px;">
<p style="text-align:center;font-family:Cursive;color:rgba(241, 67, 67, 0.838);">
Greetings <span style="color:rgba(255, 255, 255, 0.838);">From</span> Peru🦙</br>
</p>
<p style="font-size: small;text-align:center;font-family:Cursive;color:rgba(255, 255, 255, 0.838);">
Martin Alvarez - June 08, 2023</br>
</p>
</div>
<!-- End Message Martin-->
<!--hello world, here doodoo-->
<div style='color:#ffffff;background:#04aa6d;padding:10px;border-radius:9px;'>
<div>
<p style="font-size:22px;font-weight:500;">Thanks w3school for letting us get access to your amazing coding courses. I learned a lot from you.</p>
<p style="padding-right:10px">Jerejef!</p>
</div>
</div>
<div style="padding-bottom: 5px;">
<img style="width:100px;height:100px;border-radius:180px" src="https://doos.w3spaces.com/doo-mii-copy-1.png">
<p>Doudou Fall -- Senegal</p>
</div>
<!-- Message from Ross -->
<P>Ross was here!</p>
<!-- End of Message from Ross -->
<!-- Message from Jia -->
<h5>Ross was here!</h5>
<!-- End of Message from Jia -->
<!-- Message from Stefan, Romania -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thank you for the tutorial!</i></p>
<p>Stefan Anica,Romania.</p>
</div>
<!-- End Message Stefan -->
<!-- Message from Aleksei -->
<div style="background:blue;font-size:28px;padding:4px">
<p style="text-align:center;font-family:Arial;color:lightblue;">
Aleksei wants his name on the wall too!
</p>
</div>
<!-- Message start from krishrx-->
<div style="background: lightgray;">
<p><i>Thanks for this awesome tutorial,Just loved it</i> <br>krishrx</p>
</div>
<!-- Message end from krishrx-->
<!--MEssage from Othman Seif,Tanzani-->
<div style="background:blue;font-size:28px;padding:4px">
<p style="text-align:center;font-family:cursive;color:green">
Jambo,Karibuni Tanzania na tunasema Hakuna Matata!!!!
</p>
<artilce>
Your Brother in Code</br>
2023, April 09</br>
Zanzibar,Tanzania</br>
</article>
</div>
<!-- Message from ArtemUlyanov, Israel -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>W3S! You Rock!</i></p>
<p>Artem Ulyanov, Israel</p>
</div>
<!-- End Message from ArtemUlyanov, Israel -->
<p> Run, Forrest, run! </p>
<!-- Message from Ashu-->
<div style="background:rgb(22, 221, 122);font-size:28px;padding:4px">
<p style="text-align:center;font-family:Cursive;color:rgba(159, 58, 58, 0.838);">
GoodMorning From India</br>
</p>
</div>
<!-- End Message Ashu-->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif">
<i>"Learning from the best! W3schools lets go!"</i></p>
<p>Claudius Seven</p>
</div>
<!-- Message from Tokyo, Japan -->
<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>
<p>Albert Einstein</p>
<p>Thank for showing how easy programming can be. -Caius</p>
</div>
<!-- End user messages -->
<!-- Message from PeterXrates -->
<style>
.alert {
padding: 20px;
background-color: #f44336;
color: white;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
</style>
</head>
<body>
<h2>Alert Messages</h2>
<p>Click on the "x" symbol to close the alert message.</p>
<div class="alert">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
<strong>PAX</strong> has learned well from the tutorial if this alert box populated in INDEX.HTML - thank you for the gift of learning
</div>
<!-- End Message PeterXrates -->
<div style="background-color:cornflowerblue;color:white;text-align:center;font-size:3rem;">
<p>Thank you very much for your high quality tutorial.</p>
</div>
<!-- Message from Suman Shaw -->
<div style="background: #704dd1; background: -webkit-linear-gradient(to right, red, yellow, purple);
background: linear-gradient(to right, yellow, red, #8b1da7);color:#fff;
margin: 10px auto; text-align: center; border-radius: 15px; padding: 2em; width: 90%;">
<h2>Thanks for the Tutorial...😇</h2>
<p style="margin: 0 auto;">Suman Shaw, India </p>
<time datetime="2023-01-23" >17th of April, 2023</time>
</div>
<!-- Message from Suman Shaw -->
<!-- Message from Sammy Mullano -->
<h2>Awesome tutorial on Git & GitHub!</h2>
<h3>Keep up the good work W3Schools!</h3>
<!-- End Message from Sammy Mullano -->
<!-- Message from Monte Alto, Brazil -->
<div style="background:rgb(219, 48, 182);font-size:28px;padding:4px;margin: 20px;">
<p style="text-align:center;font-family:Cursive;color:whitesmoke;">
Hello from Brazil!!</br>
</p>
</div>
<!-- End Message Ffrom Monte Alto, Brazil -->
<!-- Message from Brandon, Vietnam -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Best Git tutorial on the Internet ever!!!</i></p>
<p>Brandon, Vietnam.</p>
</div>
<!-- Message from Willo, Algeria -->
<div class="msg">
<p>Thank you guys for this tutorial :)</p>
</div>
<style>
.msg {
height: 100px;
line-height: 100px;
background: linear-gradient(to bottom right, #e66465, #fff);
text-align: center;
}
.msg:hover{
background: linear-gradient(to bottom left, #e66465, #fff);
transition: transform 0.5s ease-in;
}
</style>
<!-- Message from dense_set -->
Ciao! Sono italiano e è abbastanzo bene!</br>
~dense_set
<!-- End of dense_set's message -->
<!-- Message from Andres Hung, Belize -->
<div style="padding: 20px; background-color: tomato; margin-block-start: 5px; margin-block-end: 5px; color: white; text-align: center;">
<h3>W3Schools tutorials have been a great help in my endeavors in learning how to code; they are very recommendable resource!
</h3>
<p>Andres Hung - Belize</p>
</div>
<!-- End Message Andres Hung, Belize-->
<!--Message from Daniel Nyongesa located, Kenya-->
<div style="width: fit-content; background-color: #e73c7e; border-radius: 5px; overflow: auto; border: 2px solid black; padding: 20px; font-family: cursive; margin: 20px;">
<p>Thanks w3schoools for greate resources you have realy made my programming
journey from the beginning easy. Am still using your site and i will
to upgrade my knowledge
</p>
</div>
<!-- Message from FriarGregarious, Canada -->
<div style="background:blue;font-size:28px;padding:4px">
<p style="text-align:center;font-family:Cursive;color:whitesmoke;">
Greetings and Salutations from the Great White North,</br>
though our snow has just melted away,</br>
so the Great North!!</br>
</p>
<p
style="text-align:center;font-family:Fantasy;font-size:14px;font-style:normal;color:#000000;background:whitesmoke;">
Your Brother in Code,<br>
2023, April 09<br>
Friar Gregarious, Canada
</p>
</div>
<!-- End Message FriarGregarious, Canada -->
<!--Message from Trinidad y Tobago,by Raidel, the Cuban-->
<div style="background-image: radial-gradient(rgb(8, 206, 8),rgba(169, 169, 169, 0.589)); border: black dotted 2px; text-align: center; border-radius: 10px;">
<h1 style="border-bottom: 1px ;">Muchas gracias w3schools✨</h1>
<p>En este sitio he aprendido mucho de programación y realmente estoy muy agradecido por las personas que crearon y mantienen este sitio tan especial para los desarrolladores</p>
</div>
<!--Finish Raidel message-->
<!--Message From Kingshuk Bansal,India-->
<div style="background: #0F2027; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #2C5364, #203A43, #0F2027);/* W3C, IE10+/Edge, Firefox16+, Chrome26+, Opera12+, Safari7+*/ color:#fff;
margin: 0 auto;
text-align: center;
border-radius: 15px;
padding: 2em;
width: 90%;
">
<h2>"Really this tutorial made the git and github interesting for me! Thanks For This Tutorial"</h2>
<p style="font-size: 2em;
margin: 0 auto;">👍👍</p>
<p style="margin: 0 auto;">- Kingshuk Bansal,Punjab,India</p>
</div>
<!--end message from Kingshuk Bansal-->
<!-- Message from Vick, Kenya -->
<div class="w3-card w3-margin">
<div class="w3-container" style="text-align: center; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">
<p>
Thank you for your simple and informative tutorials! I've learned so much, so quickly, thanks to
<a href="https://www.w3schools.com/">W3SCHOOLS</a>
</p>
<p>Keep up the great work devs.</p>
<p>‐ Vick, Kenya</p>
</div>
</div>
<!-- End Message Vick, Kenya -->
<!-- Message from Danh, Vietnam -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thanks for your tutorials!</i></p>
<p>Danh from Vietnam.</p>
</div>
<!-- Message from Danh, Vietnam -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thanks for your tutorials!</i></p>
<p>Zeeshan Malik.</p>
</div>
<!-- Message from Leon -->
<div class="w3-panel w3-leftbar w3-dark-grey">
<p class="w3-xlarge w3-serif">
<i>Appreciate the tutorials! They don't teach Git in my classes so I'm glad W3Schools is a thing. Greetings from Arizona, USA!</i></p>
<p>Leon - May 12th 2023</p>
</div>
<!--Message from Barishal, Bangladesh-->
<section style="background-color: #04f40c; color:#0000FF; text-align: center; font-weight: bold; padding: 5%; font-family: Georgia, 'Times New Roman', Times, serif; font-size: larger;">
<p>Thank you for all of the hard work and support dear W3 School ! ❤ ❤ ❤</p>
</section>
<!-- Message from Mohammad Nashit,UP India -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>I have learnt so many things from w3schools.Thank You so much for all.</i></p>
<p>-Nashit from India</p>
</div>
<!-- Message from Paulgorithms, USA -->
<div style="color:#6699FF;">
<h1>Nice high level tutorial!</h1>
<h3>- Paulgorithms</h3>
</div>
<!-- This is devire-->
<div class="devire-div">
<button class="devire-button"></button>
<style>
.devire-div {
background-color: yellow;
width: 100%;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
}
.devire-button {
background-color: white;
color: black;
padding: 20px 80px;
border-radius: 10px;
font-size: large;
font-weight: 900;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.devire-button::before {
content: "Hover for something good";
}
.devire-button:hover::before {
transition: 500ms;
color: green;
content: "Thanks for the tutorial --Devire";
}
</style>
</div>
<!-- Message from Tom Sparham -->
<div style="
color:white;
text-align:center;
font-size:2.5em;
border-radius:80px;
border:8px solid red;
font-family:monospace;
font: bold;
background: linear-gradient(280deg, #a01cfd, goldenrod, white);
text-align: center;
border: 5px black outset;
">
<br/>
<h2>Thanks for the tutorial!</h2>
<h4>* Tom Sparham *</h4>
<h4>( 0 _ 0 )</h4>
<br/>
</div>
<!-- Message end XS -->
<!-- Message from SacVidhi -->
<div style="
color:white;
text-align:center;
font-size:2.5em;
border-radius:80px;
border:8px solid Orange;
font-family:monospace;
font: bold;
background: linear-gradient(280deg, #a01cfd, goldenrod, white);
text-align: center;
border: 5px black outset;
">
<br/>
<h2>Good Things Takes time, and programming/web development is a good things</h2>
<h4>* Learning WevDev Geek *</h4>
<h4>( 0 _ 0 )</h4>
<br/>
</div>
<!-- Message end XS -->
<!-- Message from Italy, by Nic -->
<div style="background-color:rgb(200, 194, 255); color: black ;text-align: center;">
<h1>This is great!!</h1>
<h3>Thanks for the tutorial from Nic</h3>
</div>
<!-- Message from HM -->
<p style="background-color:aliceblue; color: lightskyblue; text-align: center;">Thanks for this great tutorial.</p>
<!-- message from WiedemannF -->
<div style="background-color:rgb(100, 50, 70); color: white ;text-align: center;">
<h1>Thank you for this tutorial!</h1>
<h3>Russia</h3>
</div>
<h1>Fasza Tutorijál!</h1>
<!-- Message from David, Varna, Bulgaria -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Great tutorial!</i></p>
<p>Keep up the good work.</p>
</div>
<!-- Message end XS -->
<!-- Message from Alex, Greece -->
<div class="box blue;" style="width:100%;">
<H1 style="color:blue;">Thank you very much for this tutorial!</H1>
<p style="color:blue;">-Alex from Greece</p>
</div>
<!-- Message from XS -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Great tutorial for beginners!</i></p>
<p>Love from XS</p>
</div>
<!-- Message end XS -->
<!-- Message from AA -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">Amazing tutorial. If you wanna learn git check out this tutorial.</p>
<p>Abdurahman AYDIN From Türkiye</p>
</div>
<!-- Message from Prahant Soni, Pune, India -->
<div style="background:black; padding:20px">
<h3 style="text-align:center;font-family:Cursive;font-variant:small-caps;color:#FFFFFF;">One of the best tutorial! and stepwise practice.</h3>
<p style="text-align:center;font-family:Cursive;font-size:14px;font-style:normal;font-weight:bold;font-variant:small-caps;color:#000000;background:gray;">
Thanks!<br>
Prashant Soni </p>
</div>
<!-- Message end Prashant Soni, Pune, India -->
<!-- Message from Herbert M., Vancouver BC Canada -->
<div style="margin-right: 25%; margin-left: 25%; margin-top: 25px; margin-bottom: 25px;">
<div class="HerbertM-Message"
style="background-color: LightGray; padding: 10px; border: 3px black outset;" >
<div style="font-size:larger;">
<em><q>Well done tutorial on Git!</q></em>
</div>
<hr style="border-top: 1px solid black; width: 75%; margin-left: 12%;">
<div style="text-align: right;">
<div>
<a href="https://www.w3schools.com/git/default.asp?remote=github">
<cite>Git Tutorial</cite>
</a> at w3schools.com
</div>
<div style="font-size:x-small;">
<br>
<div>Herbert M.</div>
<div>Vancouver, British Columbia, Canada</div>
<div>Sunday, March 19<sup>th</sup>, 2023</div>
</div>
</div>
</div>
<!-- Message from Decorah, Iowa, U.S. -->
<p>KLE was here.</p>
<!-- Message from Mac Snow -->
<div style="font: bold; background: linear-gradient(to bottom, gold, goldenrod, white); text-align: center; padding: 1px; border: 3px blueviolet outset;">
<h2 style="background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
background-clip: text;
-webkit-text-fill-color: transparent;">Nice tutorial!</h2>
<p style="background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
background-clip: text;
-webkit-text-fill-color: transparent;">-Mac Snow</p>
</div>
<!-- Message from Aline C. -->
<div class="w3-panel w3-sand w3-leftbar">
<p class="w3-xlarge w3-serif">
<p><i class="fa fa-quote-right w3-xxlarge"></i><br>
<i>Great tutorial that I have recommended to friends. Very clear, we directly work with examples and the exercises are well done. Thanks a lot !</i></p>
<p>Aline C.</p>
</div>
<!-- Message from |Thabang Kubheka-->
<p style="font-size: 16px;color: #000;text-align: center;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">Thank you for helping us learn and understand code.We appreciate it - Love, Thabang Kubheka ,South Africa</p>
<!-- Message from |Thabang Kubheka-->
<!--message from Kaprun -->
<h1><b>Thanx w3chools from Kaprun!</b></h1>
<!--end of message from innocent waluza-->
<!--message from Kedar -->
<h1><b>Hello, Kedar from BLR!</b></h1>
<!--end of message from innocent waluza-->
<h1 class="f_practice" style="text-align: center;">(This msg is added by Aadil Shaikh) Holly Molly!!! This Worked!!</h1>
<!-- Message from GODFrancySs-->
<div class="w3-card-4 w3-monospace" style="width: 20%; min-width: 400px; margin-inline: auto; margin-bottom: 100px;">
<div class="w3-center">
<header class="w3-container w3-light-grey">
<h3 class="w3-xxlarge font-effect-shadow-multiple" style="font-family: 'Lobster', Sans-serif; cursor: pointer;">Francisco Almeida</h3>
</header>
<div class="w3-container">
<p class="w3-large">Thank you w3schools 💖 (12/03/2023)</p>
<hr>
<p class="w3-left-align">Student in Computational Engineering at the University of Aveiro (UA) <span class="w3-hover-text-red"> Portugal 🇵🇹</span>.</p>
</div>
</div>
</div>
<!-- End Message from GODFrancySs (for gamers, search my name in faceit :P) -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Thanks for this tutorial, it was really insightful."</i></p>
<p>Saüc Abadal</p>
</div>
<div style="background: #704dd1; background: -webkit-linear-gradient(to right, #633479, #670974, #79278d);
background: linear-gradient(to right, #89279c, #6d27a7, #8b1da7);color:#fff;
margin: 0 auto; text-align: center; border-radius: 15px; padding: 2em; width: 90%;">
<h2>What Theodore said below! I thank him for his code as well 😇</h2>
<p style="font-size: 2em;
margin: 0 auto;">🤘 🤘</p>
<p style="margin: 0 auto;">Andreas, Athens, Greece </p>
<time datetime="2023-01-23" >8th of March, 2023</time>
</div>
<h2>Thank you for the the tutorial, Greetings from TURKEY :)</h2>
<!-- Message from PT -->
<h2>Thank you w3schools for this awesome tutorial on Git & GitHub!</h2>
<h3>This is PT from BD</h3>
<!-- End Message from PT -->
<!-- Message from Sandrine -->
<div class="w3-panel w3-leftbar w3-2017-navy-peony">
<p class="w3-xlarge w3-serif">
<i>Thank you w3schools for this brilliant tutorial.</i></p>
<p>Sandrine, from a sunny snowy Stockholm (Sweden)</p>
</div>
<!-- message from sheroz khan -->
<h3> Thanks </h3>
<!-- Message from Sahil Wani-->
<div class="w3-panel w3-indigo w3-leftbar">
<p class="w3-xlarge">
<i>" Really grateful for providing such a great and easy to follow tutorial.<br>
W3School Tutorials have guided be a lot in my journey. Thanks a lot"</i>
</p>
<p>Sahil Wani</p>
<p>Mumbai, India</p>
<p>2023-04-197</p>
</div>
<!-- End Message -->
<!-- Message from j-carrapa -->
<p>Just a message.</p>
<!-- Message from Michelle -->
<p>It feels so cool to be able to contribute a message to a public page through code. Thank you for the clear tutorial! Michelle :)</p>
<!-- End Message from Michelle -->
<!-- Message from Flavio -->
<p>You made one of the best tutorials on this subject.</p>
<!-- End message from Flavio -->
<!-- Message from Vitalizzare-->
<div style="margin: 0 auto; text-align: center; padding: 2em; border-radius: 10px; box-shadow: 3px 4px 9px grey; width: 80%; background: linear-gradient(to right, darkgreen, forestgreen, seagreen); color: ivory;">
<p style="margin: 0 auto; font-size: 24px;">Programming can be seen as evolution on steroids — some handy and attractive code or idea is reproduced with slight modifications, and this post is no exception.</p>
<p style="margin: 0 auto;">Thanks, Theodore from Athens and everyone who replicated this code before!</p>
<time datetime="2023-03-10" >March 10, 2023</time>
</div>
<!-- End Message from Vitalizzare -->
<!-- Message from Taryn -->
<p>Thank you for teaching me how to use Git and GitHub. - Taryn</p>
<!-- Message from Ivan Tendou -->
<p>Thank you for this easy tutorial, -Ivan Tendou</p>
<!-- Message from Paul Brian -->
<div style="background: #704dd1; background: -webkit-linear-gradient(to right, #633479, #670974, #79278d);
background: linear-gradient(to right, #89279c, #6d27a7, #8b1da7);color:#fff;
margin: 0 auto; text-align: center; border-radius: 45px; padding: 2em; width: 100%;">
<h2>Thank you for this wonderful course!</h2>
<p style="font-size: 2em;
margin: 0 auto;">🤘 🤘</p>
<p style="margin: 0 auto;">Paul BRIAN, United States of America </p>
<time datetime="2023-03-1" >1st of March, 2023</time>
</div>
<!-- End Message from Paul Brian -->
<!-- Message from Theodore -->
<div style="background: #704dd1; background: -webkit-linear-gradient(to right, #633479, #670974, #79278d);
background: linear-gradient(to right, #89279c, #6d27a7, #8b1da7);color:#fff;
margin: 0 auto; text-align: center; border-radius: 15px; padding: 2em; width: 90%;">
<h2>w3schools tutorial rocks!</h2>
<p style="font-size: 2em;
margin: 0 auto;">🤘 🤘</p>
<p style="margin: 0 auto;">Theodore, Athens, Greece </p>
<time datetime="2023-01-23" >16th of Feb, 2023</time>
</div>
<!-- End Message from Theodore -->
<!--message from Inno Waluza-->
<h1><b>Thank You w3chools for this tutorial</b></h1>
<h2><b><i>Inno-Waluza From Dowa, Malawi @265</i></b></h2>
<!--end of message from innocent waluza-->
<!--message from Onesmus-->
<p style="font-family:Copperplate, Papyrus, fantasy; font-size: 20px;">Thank you so much W3 School for your great tutorials.They have really been helpful.<br>Onesmus from Kenya</p>
<!-- Message from Arjun -->
<h2>Thank you for a hands on tutorial on how to fork!</h2>
<h3>This is Arjun from Hyderabad, India 🇮🇳</h3>
<!-- End Message from Arjun -->
<!-- Begin Message -->
<div class="w3-panel w3-blue w3-leftbar">
<p class="w3-xlarge">
<i>"You miss 100% of the shots you don't take. -Wayne Gretzky" - Michael Scott </i></p>
<p></p>
</div>
<!-- End Message -->
<h2>Rawan.</h2>
<!-- message from Kausik -->
<div style="text-align:center">
<h2>Great tutorial and learnt a lot about Github - Kausik.</h2>
</div>
<div style="text-align:center">
<h2>This Heading I added Just 4 the Learning Purpose</h2>
</div>
<!-- Message from Kumar Vaibhav-->
<div style = "text-align: center">
<h2> A good tutorial to learn Git and Github - KV</h2>
</div>
<!-- Message from WASEF ZEMAM -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xlarge w3-serif">
<i>
"At the heart of Git is collaboration And collaboration is much easier with w3schools!"
</i>
</p>
<p>WASEF ZEMAM</p>
</div>
<!-- Message from Ivan -->
<div class= w3-panel w3-red w3-leftbar">
<p class="w3-xlarge">
<i>"Thank you for this tutorial, and this amazing learning platform."</i>
-- Ivan from Berne, Switzerland.
</p>
</div>
<!-- message from Rohith-->
<div style="text-align:center">
<h2>Well orgainised content for learning Git and GitHub - Rohith</h2>
</div>
<!-- Message from Hellerlight -->
<div class="w3-panel w3-indigo w3-leftbar">
<p class="w3-xlarge">
<i>" Thank you for all these amazing and easy to follow tutorials.<br>
If W3Schools wasn't here to guide me, i'm not sure i would have gotten to where i am now.<br>
Thank you. "</i>
</p>
<p>Hellerlight</p>
<p>2023-01-27</p>
</div>
<!-- End Message -->
<!-- Message from Niq -->
<div class="w3-panel w3-blue w3-leftbar">
<p class="w3-xlarge">
<i>"Thank you for this amazing Git tutorial. Exactly what I was looking for 😇"</i></p>
<p>-Niq from Vienna, Austria 🇦🇹</p>
</div>
<!-- End Message -->
<p>HELLO!!!!!!!!!!!!!</p>
<h1> Taraji Grande Amore </h1>
<!-- Message from Carlos-->
<div style="background: #0F2027; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #2C5364, #203A43, #0F2027);/* W3C, IE10+/Edge, Firefox16+, Chrome26+, Opera12+, Safari7+*/ color:#fff;
margin: 0 auto;
text-align: center;
border-radius: 15px;
padding: 2em;
width: 90%;
">
<h2>"One of the most interactive tutorials I've had the pleasure of working with!"</h2>
<p style="font-size: 2em;
margin: 0 auto;">👍👍</p>
<p style="margin: 0 auto;">- Carlos, North Carolina, USA</p>
<time datetime="2023-01-23" >January 23rd, 2023</time>
</div>
<!--End Message from Carlos -->
<!-- Message from Dinnkun -->
<div>
<h1>From Debabrato</h1>
<p>Really Nice tutorial</p>
<p>02 Feb 2023</p>
</div>
<!-- Message from Dinnkun -->
<div>
<h1>From Dinnkun: good tutorial!</h1>
<p>Yeah i kinda copy it from the bottom</p>
<p>23 Jan 2023 10:52</p>
</div>
<!--Message from Old Dogs-->
<div>
<h1>OLD DOGS!</h1>
<H2>Yes, you can teach an old dog new tricks!</H2>
<p>Yuma, Arizona, USA</p>
<p> January 20, 2023</p>
</div>
<!-- End Message -->
<!--Message from venky-->
<div>
<h1>whaaaat!!!!</h1>
<H2>it really is a nice idea</H2>
<p>India</p>
<p> Feb 2, 2023</p>
</div>
<!-- End Message -->
<!-- Message from Phil -->
<div>
<h1>Best Tutorial i made so far, thank you!</h1>
<p>Philip-Daniel Ebsworth, Germany.</p>
<p>13.01.2023</p>
</div>
<!-- End Message -->
<!-- Message from Kamron -->
<div>
<h1>
This was the best tutorial I found so far! Kamron.
</h1>
<p>Tashkent. Uzbekistan</p>
<p>01.030.23</p>
</div>
<!-- End Message -->
<!-- Message from Andrei -->
<div>
<h1>Thank you for having such a detailed tutorial on git, most of other stuff I found was just commands!</h1>
<p>Groningen, The Netherlands.</p>
<p>04.02.2023</p>
</div>
<!-- End Message -->
<!-- Message from Mustapha NI -->
<div class="w3-panel " style="background-color: #f1f1f1;
color: #000000;
border-radius: 30px;
padding: 30px;">
<h1 style="text-align: center; color: #887a7a;">Moroccan Developer 🇲🇦</h1>
<p class="w3-xlarge" style="font-family: Helvetica;
font-style: normal;
padding: 35px; ">
<i>
Thanks a lot W3Schools for such a great Tutorial.
i'm Mustapha NI from Morocco, Foum Zgiud
I truly appreciate your efforts. And this is my first open-source contribution.
You really make us feel proud...
</i>
</p>
<p style="font-family: Helvetica;
font-style: normal;
float: right;
padding: 30px;
background-color: #dad1d1;
border-left:rgb(30, 55, 42) solid 5px;
border-right:rgb(30, 55, 42) solid 5px; ">Mustapha NI - Morocco, Foum Zgiud</p>
</div>
<!-- End Message -->
<!-- Message from your lovely mother-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Stop staring at your conpuper and go out and play! Your eyes and your brain are going to thank you!"</i></p>
<p>-Your lovely mother</p>
</div>
<!-- END of message from your lovely mother-->
<!-- Message from OSK -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xlarge w3-serif">
<i>
"The best tutorials are always from W3. Thanks so much!!!"
</i>
</p>
<p>OSK</p>
</div>
<!-- End Message -->
<!-- Message from frigori -->
<div class="w3-panel w3-leftbar w3-yellow">
<p class="w3-xlarge w3-serif">
<i>