forked from w3schools-test/w3schools-test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
4870 lines (4114 loc) · 200 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">
<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 Ivan Tendou -->
<p>Thank you for this easy tutorial, -Ivan Tendou</p>
<!-- 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 -->
<!-- message from Kausik -->
<div style="text-align:center">
<h2>Great tutorial and learnt a lot about Github - Kausik.</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>
<!-- 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 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>
"Magnificent tutorial! Thanks!!"
</i>
</p>
<p>frigori</p>
</div>
<!-- End Message -->
<!-- Message from ImadZR -->
<div class="w3-panel " style="background-color: #009933;
color: #000000;
border-radius: 30px;
border: 5px solid #24b20e;
padding: 30px;">
<h1 style="text-align: center; color: #ffffff;">Moroccan Developer 🇲🇦</h1>
<p class="w3-xlarge" style="font-family: Helvetica;
font-style: normal;
background-color: white;
padding: 35px;
border: 5px solid #24b20e;
border-bottom-left-radius: 30px;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px; ">
<i>
"Thanks a lot W3Schools for such a great Tutorial.
i'am Imad ZR from Morocco, Mohammedia ( weld lekbira - casablanca )
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: white;
border: 5px solid #24b20e;
border-top-left-radius: 30px;
border-bottom-right-radius: 30px;
border-bottom-left-radius: 30px; ">Imad ZR - Morocco, Mohammedia</p>
</div>
<!-- End Message -->
<!-- Message from Juan Jimenez -->
<div>
<h1>Keep Rocking w3schools!</h1>
<p>Juan Jimenez from Aguascalientes, Mexico.</p>
<p>12/23/2022</p>
</div>
<!-- Message from Jeremiah -->
<div>
<p>
Best Git Tutorial Ever
</p>
<p>Jeremiah</p>
</div>
<!-- End Message -->
<!-- Message from Sadik Turgut -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xlarge w3-serif">
<i>
"Great tutorial for a network engineer, Thank you all"
</i>
</p>
<p>Sadik Turgut</p>
</div>
<!-- End Message -->
<!-- Message From ARYA A -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Simplicity is the ultimate SOPHISTICATION"</i></p>
<p>Leonardo Da Vinci</p>
</div>
<!--- Message from Marvelous Innocent ---->
<div class="" style="background-image:linear-gradient(#8ee000, green); color: white; width: 90%; border-radius: 10px; padding: 10px 15px; margin:15px auto; ">
<h2 style="color:orange; font-size:30px;">A very big <em>"THANK YOU TO W3SCHOOL"</em></h2>
<p>I really appreciate all team members that has worked together to make <a class="" style="color: orange;" href="w3schools.com">w3schools.com</a> a meaningful and useful website for everyone who wants to learn web development and programming. I have learnt alot from <a class="" style="color: orange;" href="w3schools.com">w3schools.com</a> and really appreciate them very well</p>
<span style="color:orange; display:block; font-size:20px; font-family: cursive; ">Marvelous Innocent</span>
<span style="color:orange; display:block; font-size:20px; font-family:cursive; "> Nigeria</span>
</div>
<!--- End of message from Marvelous Innocent ---->
<!-- Message from Leo-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Great tutorials, I'm enjoying and learning a lot. Thanks W3schools"</i></p>
<p>Cheers from Brazil</p>
</div>
<div>
<h1>Hello from Brasil!</h1>
<p>Daltro Oliveira Vinuto </p>
</div>
<div style="background-color:rgb(100, 50, 70); color: white ;text-align: center;">
<h1>Thank you for this tutorial!</h1>
<h3>India</h3>
</div>
<!-- message from Filip -->
<div style="background-color:rgb(100, 50, 70); color: white ;text-align: center;">
<h1>Thank you for this tutorial!</h1>
<h3>India</h3>
</div>
<!--message from jay-->
<div>
Great Tutorial , thank you.
</div>
<!-- Message from WDJ -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>
"Hello World!"
</i>
</p>
<p>WDJ</p>
</div>
<!-- End of Message -->
<!-- Message from Mustakim Alam Moon -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xlarge w3-serif">
<i>
"Thanks a lot W3Schools for such a great Tutorial.
This is the easiest & concise Git Tutorial I've ever seen.
I truly appreciate your efforts. And this is my first open-source contribution.
You really make us feel proud..."
</i>
</p>
<p>Mustakim Alam Moon</p>
</div>
<!-- End Message -->
<!-- message from sheriff -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xxlarge w3-serif">
<i>"thanks so much w3schoools for the great tutorial."</i></p>
<p style="font-weight: bolder;">Sheriff Oladimeji <br> -Nigeria</p>
</div>
<!-- Message from Nima -->
<div class="w3-panel w3-leftbar w3-sand">
<p class="w3-xlarge w3-serif">
<i>
"Cheers guys!"
</i>
</p>
<p>Nima</p>
</div>
<!-- End Message -->
<div style="text-align:center; color:white;background-color:skyblue; text-shadow: 3px 3px red">
<marquee behavior="" direction="left">Thanks for your lesson! Tushar</marquee>
</div>
<!-- Message from Yevhen-->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Cheers from Lviv.</i></p>
<p>Yevhen</p>
</div>
<div class="center" style="text-align:center; color:white;background: linear-gradient(to bottom, #009933 0%, #00cc99 100%);">
<h1> Welcome TO Beautiful country NEPAL </h1>
<h2>Thanks for the awesome Git tutorial W3schools!!! </h2>
<h4>Never gonna give you up, -JSON</h4>
</div>
<!-- Message from Yifan-->
<div style="text-align:center">
<p>Thank you W3Schools, I got 3 HDs and 1 D in my final.</p>
</div>
<!-- Message from Dkv3 -->
<div class="center" style="box-shadow: 0px 1px 1px 0px #5bbff5; background: linear-gradient(to bottom, #f40762, #6628ed, #380263);
border-radius: 6px; text-align: center; text-shadow: 0px 1px 0px #28a8ed; border: outset black; color: #0882c4;">
<h1>Sick tutorial! W3 is a super awesome site.</h1>
<h4>Connor from Florida</h4>
</div>
<div class="center" style="text-align:center; color:white;background-color:#1d2a50">
<h1> Welcome TO Beautiful country NEPAL </h1>
<h2>Thanks form Hem Raj Bhatt </h2>
</div>
<!-- Message from SAN6830 -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Thanks for who created this website.i learn a lot from this website</i></p>
<p>SRN^6830</p>
</div>
<!-- message from arjun -->
<div style="text-align:center">
<h2>Great tutorial.</h2>
</div>
<div style="text-align:center">
<h2>Thanks for the nice introduction to Git!</h2>
<p>Im-A-Noob</p>
</div>
<div style="text-align:center">
<h2>Hola Amigos, happy learning</h2>
</div>
<!-- message from manan -->
<div style="text-align:center">
<h2>hello have a great year.<br> ~Manan</h2>
</div>
<!-- Message from atanas011 -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Cheers from Serbia.</i></p>
<p>Atanas011</p>
</div>
<!-- Message from Crainmantis-->
<div style="text-align:center">
<p>There are those who can see, <br> those who can watch, <br> and those who can learn. <br> Congratulations to making it on this page and learning everyone.</p>
</div>
<!-- Message from MKhlon -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif"><i>Cheers from Krakow.</i></p>
<p>MKhlon</p>
</div>
<!-- Message from Moment -->
<div>
<p>Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. </p>
</div>
<!-- Message from Punit -->
<div>
<p> W3SCHOOL has helped me a lot with its contents. I heartly thenk you for that! specially for git tutorial.</p>
</div>
<!-- message from Bulat -->
<div style="text-align:center">
<h2>Thank you for your lessons. <br> Bulat from Bashkortostan, Russia.</h2>
</div>
<!-- message from Sathwick -->
<div style="text-align:center">
<h2>Thank you for your lessons.I learned a lot from u people <br> Sathwick ,India.</h2>
</div>
<!-- message from moonlight999777 -->
<div style="text-align:center">
<h2>Thank you for your lessons. <br> moonlight999777 from california.</h2>
</div>
<div style="text-align:center; color:white;background-color:skyblue; text-shadow: 3px 3px red">
<marquee behavior="" direction="left">Thanks for your lesson! Luc Van from Viet Nam</marquee>
</div>
<!-- message from rajneeshrai -->
<div class="w3-panel w3-leftbar w3-light-grey">
My open-source contribution - thank you to w3schools!
</div>
<div style="background-color:rgb(228, 248, 141); color: black ;text-align: center;">
<h1>w3schools</h1>
<h3>Thank you for the tutorials!</h3>
</div>
<div class="center" style="text-align:center; color:black;background-color:#70dbdb">
<h1 style="font-family: Garamond">Keep Learning -BelowSeaLevel</h1>
</div>
<div class="center" style="text-align:center; color:white;background-color:#1d2a50">
<h1>Thanks for your lessons! Enoch from Nigeria.</h1>
</div>
<div style="text-align:center; background-image:linear-gradient(141deg, #604752 0%, #E03724 51%, #D34A17 75%); text-shadow:#ff0 0px 0px 8px; color:#ff7">
<h1>Love is the only thing that matters.</h1>
</div>
<div>
<h2>From Carl in Guatemala</h2>
<p>Thanks for the tutorial.</p>
<p>Have a beautiful day, friends!</p>
</div>
<div style="background-color:rgb(200, 194, 255); color: black ;text-align: center;">
<h1>That was awesome!</h1>
<h3>Thank you from DenVR</h3>
</div>
<!-- Message from CXR -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Display&family=Noto+Sans+TC:wght@500&display=swap" rel="stylesheet">
<script>
function mouseon(){
document.getElementById("CXR").style.backgroundColor= "#184E77";
document.getElementById("CXR").style.color="#34A0A4";
document.getElementById("CXR").style.boxShadow="5px 5px 10px #34A0A4";
}
function mouseshoot(){
document.getElementById("CXR").style.backgroundColor="#52B69A";
document.getElementById("CXR").style.color="#D9ED92";
document.getElementById("CXR").style.boxShadow="5px 5px 10px #D9ED92";
}
</script>
<div id="CXR" style="background-color: #52B69A; color:#D9ED92; box-shadow: 5px 5px 10px #D9ED92; width:auto; height: 300px; position: relative;">
<div class="words" style="position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; margin: auto; font-size:30px; font-family: 'Noto Sans Display', sans-serif;" onmouseover="mouseon()" onmouseout="mouseshoot()">
<p>人生軟腸</p>
<p>This is just a chapter, not your whole story. ♥</p>
</div>
</div>
<p style="text-align: right; margin-right: 30px ;font-family: 'Noto Sans Display', sans-serif; font-size:20px; color:#1A759F; text-shadow:2px 0px 1px #99D98C;">- CaiXinRu, Taiwan</p>
<!-- message from Haresh -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Happiness is only real when shared"</i></p>
<p>Haresh</p>
</div>
<!-- message from AMN -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<h4>"W3SCHOOLS is great plateforme to learn code."</h4></p>
<p>Thank you!</p>
</div>
<!-- message from Yifan -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Cindy, internship, research paper, all the best things in the world."</i></p>
<p>Yifan</p>
</div>
<!-- message from Iskuzmi -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"My first open-source contribution. PROUD!"</i></p>
<p>iskuzmi</p>
</div>
<div class="center" style="text-align:center; color:white;background-color:#1d2a50">
<h1>Thanks for your lessons! Andrii from Kyiv.</h1>
</div>
<!-- Message from Madhava -->
<div style ="background: green; text-align: center;color: white;font-weight: 700;min-height: 10vh;font-size: 3rem;">Thank you w3schools for the fork tutorial..from Maddy</div>
<!--Message from Rahul -->
<div style="background:linear-gradient(orange,white,green);text-align: center;color: #0030dd;border-radius: 13px;">
<h1 style="font-family: fantasy;">Thank you w3school.com for great tutorial.🙏</h1>
<marquee behavior="" direction="left">❤️❤️❤️❤️❤️❤️</marquee>
<h4 style="color:rgb(47, 41, 41);">Rahul from India</h4>
</div>
<!-- from Anshul Anand -->
<div class="center" style="background-color: lightpink; text-align: center; padding: 10px;">
<h1 style="font-family:serif;">Thank you W3Schools! You have helped me the <span style="font-weight:bold; text-decoration: underline;">most</span> in my learning journey!! You are a blessing!!!</h1>
<h3>~Love from Anshul, India</h3>
</div>
<!-- from kiran moktan-->
<div class="center" style="text-align:center; color:white;background-color:#1d2a50">
<h1>W3Schools paves the way for new developers, thank you for all your efforts</h1>
</div>
<!-- message from rumiani -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"My open-source contribution. PROUD!"</i></p>
<p>Rumiani</p>
</div>
<!-- message from Rakesh -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"My first open-source contribution. PROUD!"</i></p>
<p>Rakesh</p>
</div>
<!-- message from Vyacheslav -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>Thanks a lot for all your efforts. Thanks to you world becomes a better place! </i></p>
<p>Vyacheslav</p>
</div>
<!--message from Talha-->
<div style="background-color:rgb(0, 77, 95); color: white ;text-align: center;">
<h1>Talha has been here.</h1>
<h3>Talha, Pakistan</h3>
</div>
<!--message from Tendai-->
<div style="background-color:rgb(0, 94, 55); color: white ;text-align: center;">
<h1>Thank you for this tutorial!</h1>
<h3>Tendai, Zimbabwe</h3>
</div>
<!-- message from Artem -->
<div style="background-color: yellow; color: blue; text-align: center;">
<h1>Thank you fro tutorial</h1>
<h3>Artem, Ukraine</h3>
</div>
<!-- message from Azerbaijan, Jalal Rahmanov-->
<div style="background-color: green; color: blue; text-align: center;">
<h1>Thanks from Karabagh, Azerbaijan :) </h1>
<h3>Jalal Rahmanov, Azerbaijan</h3>
</div>
<!-- message from Moonmist -->
<h1>Inserted message</h1>
<h2>No positivity, no negativity. Just an insertion.</h2>
</div>
<!-- message from Filip -->
<div style="background-color:rgb(0, 94, 55); color: white ;text-align: center;">
<h1>Thank you for this tutorial!</h1>
<h3>Filip, Serbia</h3>
</div>
<!--This one from Ahmet Solmaz -->
<div class="w3-container w3-deep-orange"name="viewport" content="width=device-width, initial-scale=1">
<h2>Quote From Dostoyevsky</h2>
<p>Especially Turkish Tea</p>
<div class="w3-panel w3-amber">
<p class="w3-xlarge w3-serif"><i>“I say let the world go to hell, but I should always have my tea.”</i></p>
<p>Fyodor Dostoevsky</p>
</div>
</div>
<!--This one from Vaibhav Yadav -->
<div style="background:linear-gradient(to right, rgb(75, 75, 173),red); padding: 5px; border-radius: 5px; box-shadow: 5px 5px 9px black; color: wheat; font-size: 7px;" >
<h4 style="font-size: 30px;" >Thank You W3Schools ❤️ for you lovely support, carry on 🤘🤘🤘🤘 Love from India.</h4>
<h5 style="text-align: end; margin-right: 19px;">- Vaibhav Yadav, India.</h5>
</div>
<!-- Message from ergun -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Hello World!"</i></p>
<p>Ergun</p>
</div>
<!-- message from Ali Farhad -->
<div style="background-color:#00ffcc ;width:100% ;height:10rem ;border-radius: 15px; opacity: 0.8; color: #008000;padding: 1rem;">
<h1 style="color:#02446c ; text-align: center;">what a tutorial! :)</h1>
<p>Thank you so much , Ali,IRAN <span style="color:red ;"><3 </span></p>
</div>
<!-- Message from moshmoshca -->
<div style="display: flex; justify-content: center;" class="w3-center">
<div style="padding: 6rem 7rem; background-color: #FAD790; color: #252525; font-size: 3.2rem;">
<p style="font-weight: bold; margin: 0;">
Take one step at a time,<br>
never stop learning, and...
</p>
</div>
<div style="padding: 6rem; background-color: #17A096; color: white;" >
<h3 style="font-size: 4rem;">Never give up!</h3>
</div>
</div>
<!-- Message from levent-86 -->
<div style="background-color:steelblue; color:white; display: flex; flex-direction: column; align-items: center; box-shadow: 0 4px 8px rgba(0, 0, 0, .5);">
<h2>I've learned many things from you.</h2>
<h1>Thank you w3schools.com family!</h1>
</div>
<!-- message from Sominski -->
<h1>Всем добра!</h1>
<h2>Спасибо за учебу!</h2>
</div>
<!-- Message from roXx -->
<div style="background-color: rgb(71, 177, 226); color: rgb(153, 17, 144);">
<h1>This is my first contribution with any github fork. thanks a lot for this</h1>
<p><h2><i>W3School always gives a simple and clear explanation which is easy to understand</i></h2></p>
<p><i>Best wishes from India, always roXx .</i></p>
</div>
<!-- Message from Naveen -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=BIZ UDPMincho">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Amatic SC">
<script>
function mouseover(){
document.getElementById("NavsP").style.backgroundColor="skyblue";
document.getElementById("NavsP").style.color="white";
document.getElementById("NavsP").style.boxShadow="10px 10px 10px violet";
}
function mouseout(){
document.getElementById("NavsP").style.backgroundColor="lightcyan";
document.getElementById("NavsP").style.color="black";
document.getElementById("NavsP").style.boxShadow="10px 10px 10px grey";
}
</script>
<p id="NavsP" style="text-align:center;background-color:lightcyan;box-shadow:10px 10px 10px grey; height:200px;width:auto;color:black;font-size:48px;font-family: 'BIZ UDPMincho', serif;padding-top:25px; margin:5px;" onmouseover="mouseover()" onmouseout="mouseout()">
Thank you w3schools, for providing such amazing content to learn😇💖</p>
<p style="text-align: right; font-family:Amatic SC, serif;font-size:40px;text-shadow:1px 1px 3px grey;">~Naveen, India</p>
<!-- Message From David -->
<div style="background-color:red; color: white; text-align: center">
<h1>Hi I'm David From Indonesia, Thank you very much for this tutorial</h1>
</div>
<!-- Message from ph-->
<div style = "background-color: black; color: white; text-align: center">
<h1>Thank you very much for this tutorial!</h1>
</div>
<!-- message from Mubarak -->
<div style="background-color: red; color: white;">
<h1>Mubarak Mayyeri was here</h1>
<p><i>Thanks to w3schools and Git</i></p>
</div>
<!-- messge from Mihai -->
<div style="background-color: #201b1b; color: #cbcbcb;">
<h1>Thank you very much from Romania</h1>
<p><i>Mihai Neagu</i></p>
</div>
<!-- Message from Moshudougee -->
<div style="background-color: gray; color: blue;">
<h1>Good work</h1>
<p>Hakuna matata (!:!)</p>
</div>
<!-- message from Stephen -->
<div class="w3-panel w3-leftbar w3-light-grey w3-hover-border-red" style="background-image: linear-gradient(to right,#000080, #24C6DC); box-shadow: 5px 5px 10px black; border-radius: 15px; ">
<div class="w3-left-align w3-text-white">
<p style="font-size: 30px; text-shadow: 2px 2px 4px red;">Coding is not an easy thing to do, but we'll keep trying, learning and improving till we become great, so far we dont give up.. 😊 😊 </p>
<h3 style="text-align: center; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;">Lovely website.. Thank you very much for this tutorial!</h1>
<p style="color: yellow; text-align: center; text-shadow: 5px 5x 6px red; font-size: 30px;">...Stephen from Nigeria </p>
</div>
</div>
<!-- message from Jonathanssz -->
<div style="background-color: blue; color: white;">
<h1>This tutorial is wonderful, I learned everything I needed.</h1>
<p><i>Thanks from Brasil.</i></p>
</div>
<!-- message from Alexander -->
<div style="background-color: #212121; color:#fafafa;">
<h1>Nice tutorial!!!</h1>
</div>
<div style="background-color: #212121; color: #fafafa;">
<h1>Amazing tutorial!</h1>
<p>Thanks a ton :)</p>
</div>
<!-- message from Cosmin2701 -->
<div style="background-color: green; color: white;">
<h1>I finally did it guys !!</h1>
<p><i>On my way becoming software engineer! Thanks for this tutorial !</i></p>
<p><i>Best wishes, Cosmin .</i></p>
</div>
<div style="background: rgb(42, 126, 145); text-align: center; padding-block: 1rem; border-radius: 10px;">
<h1>Thanks for Fork tutorial</h1>
<h2>ykm</h2>
</div>
<!-- message from Ghana -->
<div style="background-color: cyan; color: navy;">
<h1>W3Schools is the main school!!!</h1>
<p><i>I appreciate the team</i></p>
</div>
<div style="background: rgb(255, 196, 0); text-align: center; padding-block: 1rem; border-radius: 10px;">
<h1>Best website where you can improve your developer skills</h1>
<h2>Gin</h2>
</div>
<div style="background: rgb(255, 196, 0); text-align: center; padding-block: 1rem; border-radius: 10px;">
<h1>Big THANK YOU</h1>
<h2>Sami - Algeria</h2>
</div>
<div style="background-color: white; color: black;">
<h1>Thanks from Middle east</h1>
<p><i>Sepehr</i></p>
</div>
<!-- message from Mester yassir -->
<div style="background-color: rgb(68, 17, 187); color: rgb(49, 211, 35);">
<h1>i really learned from this website. we hope to add more tutorials like flutter .</h1>
<p><i>Thanks from Morocco</i></p>
</div>
<!--message from Johanka-->
<div> <span style="color: red;">With</span> <span style="color: gold;">Love</span> <span style="color: green;">From</span> GoldCoast - Pizzosta</div>
<div style="background-color: white; color: black;">
<h1>Thank you very much for this tutorial!</h1>
<p><i>Johanka</i></p>
</div>
<!--message from Bangladesh-->
<div>
<h1>Thanks a lot!</h1>
</div>
<!--message from ANUBHAV-->
<div style="background:navy;color:white;text-align:center;
font-size:2.5em;border-radius:80px;border:8px solid red;font-family:monospace;">
Great tutorial on Fork and Git.<br> keep it up.<br>ANUBHAV FROM INDIA 🇮🇳
</div
<!--end of message from ANUBHAV-->
<div style="background: rgba(0, 63, 44, 0.89); padding: 0px; margin: 2px; border-radius: 20% 2% 30% 3%;">
<p style="text-align: center; margin: 0%; padding:50px"><span style="color:rgb(255, 253, 195); text-shadow: 0px 0px 2px rgb(255, 0, 0), 0px 0px 20px rgb(255, 215, 215); font-size: x-large;">
From <span style="color: rgb(255, 206, 206);">Bangladesh</span>, to <span style="color: rgb(160, 255, 215);">W3Schools</span>, so much thanks</span></br>
<span style="font-size: large; color: #e3d7ff;"> for turning the hardest topics into so easy ones to learn! Please add more tutorials because your tutorials are the best!</span>
</p>
</div>
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-margin-right"></i>
hello from migoilee 2022 :) </p>
</div>
<!-- message from HZW -->
<div style="background-color: #565758; color: purple;">
<h1>W3schools is so COOL! The tutorials is easy to understand which may disable language barrier!</h1>
<p>Thanks from China</p>
</div>
<!-- message from Fatah -->
<div style="background-color: red; color: white;">
<h1>W3Schools is really make programming education great and easy to understand</h1>
<p><i>Thanks from Indonesia</i></p>
</div>
<!-- message from Ankit -->
<div style="background-color: yellow; color: white;">
<h1>Thanks to W3Schools for its simplicity</h1>
<p><i>Thanks from India</i></p>
</div>
<!-- message from Brown -->
<div style="background-color: yellow; color: white;">
<h1>W3Schools☀️❤️</h1>
<p><i>Thanks from China</i></p>
</div>
<!-- message from Endowp Thailand -->
<div style="background-color:rgb(0, 94, 55); color: white ;text-align: center;">
<h1>
💖 Thanks from Thailand! 💖
</h1>
<h1>
💖 W3schools 💖
</h1>
</div>
<!--message from Reza-->
<div style="background-color: yellow; color: white;">
<h1>Thanks to W3Schools for its simplicity</h1>
<p><i>Reza Sajjadian from Iran</i></p>
</div>
<!-- message from ARRWFajmayor Nigeria -->
<div>
<h1>Just trying out the github tutorial</h1>
<p><i>ARRW</i></p>
</div>
<!-- Message from Siklab -->
<div>
<h1>Awesome GitHub tutorial!</h1>
<p>Siklab</p>
</div>
<!-- John-K Thanks W3Schools -->
<div class="w3-card w3-sans-serif" style="width:90%; min-width:400px; margin: auto; margin-bottom:100px">
<div class="w3-center">
<header class="w3-container w3-blue">
<h1 class="w3-xxlarge" style="color:black; font-family: copperplate;">Thanks for the tutorial W3schools. 😁</h1>
</header>
<div class="w3-container w3-teal">
<p class="w3-large" style="color:black;"><i>John K</i></p>
<hr style=" border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));; width: 70%; margin: auto; margin-bottom: 20px">
<p class="w3-right-align w3-small" style="margin-right: 10px; color:black; font-weight:bold;">Scotland</p>
</div>
</div>
</div>
<!-- message from Tbilisi -->
<div class="w3-center w3-container w3-green">
<h1 class="w3-xxlarge">Thanks W3schools from Georgia!</h1>
</div>
<!-- message from ARRW -->
<div>
<h1>Just trying out the github tutorial</h1>
<p> <i> ARRW </i> </p>
</div>
<!-- Mr.Market Thanks W3Schools -->
<div>
<h1>Thanks for the tutorial W3Schools. It's great!</h1>
<p> <i> Mr.Market </i> </p>
</div>
<!-- Message from Blaise-->
<div style="background-color: lightblue">
<h1 style=" color:blue; text-align:center;">Why w3school is awesomme?</h1>
<p>W3schools is one of the best online ressources to learn computer science .It gives you a clear roadmap troughout your journey. It has a great editor , good documentations for almost all programming language.</p>
<p>Thanks W3schools for your support.</p>
<hr>
<p>Blaise</p>