-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
Copy pathindex.html
16085 lines (13923 loc) · 799 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 hashan_athu-->
<div class="w3-card-4">
<header class="w3-container w3-light-grey">
<h3>Hello, Everyone!</h3>
</header>
<div class="w3-container">
<p>Greetings by Hashan Athurugiriya from Sri Lanka 🇱🇰 </p>
<hr>
<img src="https://st3.depositphotos.com/9998432/19048/v/600/depositphotos_190483894-stock-illustration-default-placeholder-fitness-trainer-in.jpg" alt="Avatar" width="82" height="100" class="w3-left w3-circle">
<p>Thank you w3school for sharing this great knowledge. Learned so much from you, and helped with my coding skills a lot.</p>
</div>
</div>
<!-- End Message from hashan_athu -->
<!---Message from Anne-->
<div class="w3-container w3-padding">
<div class="w3-panel w3-pale-blue w3-leftbar w3-border-blue">
<p>Thank you for wonderful tutorial</p>
<p class="w3-text-black w3-left">
/p>
</div>
</div>
<!---end of message-->
<!---Message from Joseph Muiruri-->
<div class="w3-container w3-padding">
<div class="w3-panel w3-pale-blue w3-leftbar w3-border-blue">
<h3 class="w3-text-blue"><b><i><i>Dear W3Schools Founders, Developers, and Tutors,</i></b></h3>
<p>Thank you for saving lives all these years. Your efforts have a special place up above.</p>
<p class="w3-text-black w3-left"><b>Regards,</b>
<b>Muiruri from Kenya.</b>
</p>
</div>
</div>
<!---end of message-->
<!-- Message from shakti-kc -->
<div style="background-color: blue; color: #fff; padding: 20px; border-radius: 5px; margin: 2rem 0;">
<h1>Hellow World!!</h1>
<h2>Sauti Was Here.</h2>
</div>
<!-- End Message from shakti-kc -->
<!-- Message from TXW4326 -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"Make it as simple as possible, but not simpler."</i></p>
<p>Albert Einstein</p>
</div>
<!-- End of message from TXW4326 -->
<!--Message from Ragnaslav, cool cards BTW -->
<div class="container-DLL">
<div class="flip-card-DLL">
<div class="flip-card-inner-DLL" style="width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; position: relative;">
<div class="flip-card-front-DLL">
<h1 class="flip-card-front-DLL-h1">
From <b>Ukraine</b> with peace!
</h1>
</div>
<div class="flip-card-back-DLL">
<h1 class="flip-card-back-DLL-h1">
Greetings from Odesa 👌
</h1>
<p>Peaceful sky to all of us</p>
</div>
</div>
</div>
</div>
<style>
.flip-card-DLL:hover .flip-card-inner-DLL {
transform: rotateX(-180deg);
}
.flip-card-DLL {
font-family: 'Roboto', sans-serif;
width: 350px;
height: 400px;
perspective: 1100px;
}
.flip-card-back-DLL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: ridge 2px #f3431c;
border-radius: 2rem;
background: #fff;
color: blue;
box-shadow: 2px 10px 50px 10px blue;
backface-visibility: hidden;
transform: rotateX(-180deg);
}
.flip-card-back-DLL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: yellow;
color: lightblue;
padding: 0.5rem 1rem;
border: 0.25rem solid blue;
box-shadow: 5px 5px 50px 10px blue;
border-radius: 8px;
margin: 0 0 0.5rem 0;
}
.flip-card-front-DLL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid black;
border-radius: 1rem;
background: linear-gradient(to bottom, blue, yellow) !important;
color: #000000;
box-shadow: -2px 10px 50px 10px black;
backface-visibility: hidden;
}
.flip-card-front-DLL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: rgba(0, 0, 255, 0.7);
color: yellow;
padding: 0.5rem 1rem;
margin: 40px;
border: 0.25rem double black;
box-shadow: 15px 10px 40px 10px white;
border-radius: 100px;
}
.container-DLL {
display: flex;
margin: 2rem 0.5rem;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
</style>
<!--Ragnaslav's message end-->
<!--IcyJuicyBob's message start-->
<div class="w3-container w3-round-large w3-card-4"
style="margin: auto; width: 50%; background: radial-gradient( circle farthest-corner at 10% 20%, rgba(240,70,70,1) 42%, rgba(0,0,0,0.41) 93.6% );">
<p
style="font-family: cursive; font-size: 60px; text-align: center; color: white; text-shadow: 5px 5px 4px #808080;">
Hello from the UK</p>
<p
style="font-family: cursive; font-size: 30px; text-align: center; color: white; text-shadow: 5px 5px 4px #808080;">
Thanks to W3Schools for the amazing tutorials</p>
<div style="text-align: center;">
<b>message from IcyJuicyBob (05/03/2025)</b>
</div>
</div>
<!--IcyJuicyBob's message end-->>
<div style="box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); border: 2px solid #000000; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(to bottom, #A12D2E 33.33%, #0C4076 33.33%, #0C4076 66.66%, #ffffff 66.66%); width: 600px; height: 400px; margin: 0 auto">
<h1 style="margin: 0 auto; padding-top: 260px; font-size: 1.5rem; font-weight: 500; text-align: center;">
Keep up the good work, you are a great source of inspiration and knowledge. </h1>
<div style="">
<p style="margin-left: 300px; margin-top: 0; margin-bottom: 0;">Kind regards from Ivica</p>
<p style="margin-left: 300px; margin-top: 0; margin-bottom: 0;">Sabac, Republic of Serbia</p>
</div>
</div>
<div style="border: 5px solid #000000; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 80%; height: 150px; margin: auto; margin-top: 1rem;">
<h1 style="margin: 0 auto; padding-top:2px; font-size: 1.5rem; font-weight: 500; text-align: center;">
El conocimiento compartido es el patrimonio de los que construyen el futuro. </h1>
<div style="">
<p style="margin-left: 500px; margin-top: 0; margin-bottom: 0;">Omar B. Ramírez</p>
<p style="margin-left: 500px; margin-top: 0; margin-bottom: 0;">Purén, Chile (El mejor pais de Chile)</p>
</div>
</div>
<!-- Message from Philrich123 -->
<br><br>
<div style="box-shadow: 0px 0px 15px 10px rgba(0, 0, 128, 0.75); border: 2px solid #000000; background: linear-gradient(to right, #0000FF 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #FF0000 66.66%); width: 500px; height: 300px; margin: 0 auto">
<h1 style="margin: 0 auto; padding-top: 200px; font-size: 1.5rem; font-weight: 500; text-align: center;text-shadow: 0px 0px 5px white, 0px 0px 15px white, 0px 0px 25px white;">
Supers cours sur w3schools, un grand merci !</h1>
<div style="margin-left: 340px; margin-top: 0; margin-bottom: 0;">
Meilleurs pensées de<br>Nouvelle-Calédonie
</div>
</div>
<!-- End of message from Philrich123 -->
<!-- Javascript -->
<h2>First JavaScript</h2>
<button type="button"
onclick="document.getElementById('demo').innerHTML = Date()">
Click me to display Date and Time.</button>
<p id="demo"></p>
<!-- Javascript end -->
<!-- message from Krunal -->
<div class="w3-panel w3-leftbar w3-light-grey">
<p class="w3-xlarge w3-serif">
<i>"May your all wishes come true!"</i>
</p>
<p>Krunal</p>
</div>
<!--Brankos Message to w3schools.com-->
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-xxlarge w3-margin-right"></i>
Thank you for years of accessible tutorials!</p>
</div>
<!--End of Brankos Message-->
<!--Sergio Message to w3schools.com-->
<div class="w3-panel w3-black">
<p class="w3-large w3-serif">
<i class="fa fa-quote-right w3-large w3-margin-right"></i>
Hi from Barcelona! Thank you for the tutorial!</p>
</div>
<!--End of Sergio Message-->
<!-- Samson message start -->
<section>
<p>
Skilled full-stack software developer proficient in core technologies like HTML, CSS, JavaScript, and Python. Well-versed in modern frameworks such as React, Flask, and Node.js, with a focus on secure and efficient database architectures using MySQL, MongoDB, and Postgres. Experienced in deploying and maintaining applications on platforms like Vercel and Render. Strong problem-solving abilities and a commitment to delivering high-quality software solutions. Effective communicator and collaborator with a passion for continuous learning and contributing to cutting-edge projects in a dynamic team environment.
</p>
</section>
<!-- Samsom message end -->
<!-- message from Thich Nhat Hanh -->
<div style="text-align: center; background-color: blue; color: white; padding: 20px; margin: 10px;">
<h3>"No mud, no lotus." - Thich Nhat Hanh"</h3>
<h5 style="font-style: italic; font-weight: bold; margin-top: 10px;">I grow in mud!<span style="font-style: normal; font-weight: normal; margin-left: 4px;"></span>
</h5>
</div>
<!-- Thich Nhat Hanh's message end -->
<!--Bo from Rancho Cucamonga -->
<h1>Finally, I have figured out how fork works. I am very happy!</h1>
<!-- End Bo messages -->
<!--Sujith's Message starts here-->
<div style="background-color:hsl(161, 100%, 50%); text-align:center; border-radius:15px; box-shadow:5px 5px 8px black;">
<p style="color:hsl(0, 0%, 5%); text-align:center; ">Thank you so much W3Schools for this Amazing Git and GitHub Tutorial where I learned so many things.</p>
<p>--SUJITH CHOWDARY</p>
</div>
<!--Sujith's Message Ends here-->
<!--Its me, Nikita!-->
<h3> I'm stucking here, but it seems ok...</h3>
<!--Its me, Nikita!-->
<h1>Thank you!</h1>
<p>Hello from ZA.</p>
<!-- Joseph Taqal Start -->
<h1>Thank you w3schools for the tutorial</h1>
<!-- Joseph Taqal End -->
<!-- Josep Méndez's Start -->
<div class="container-DL">
<div class="flip-card-DL">
<div class="flip-card-inner-DL" style="width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; position: relative;">
<div class="flip-card-front-DL">
<h1 class="flip-card-front-DL-h1">
U talking to me?
</h1>
<p style="font-size: small;">hovering flips</p>
</div>
<div class="flip-card-back-DL">
<h1 class="flip-card-back-DL-h1">
Josep Méndez 👋
</h1>
<p style="font-size: medium;">Palma de Mallorca / SPAIN</p>
<p style="font-size: medium;">2025-02-04</p>
</div>
</div>
</div>
</div>
<style>
.flip-card-DL:hover .flip-card-inner-DL {
transform: rotateY(180deg);
}
.flip-card-DL {
font-family: 'Roboto', sans-serif;
width: 350px;
height: 400px;
perspective: 1100px;
}
.flip-card-back-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid blue;
border-radius: 1rem;
background: #000000;
color: blue;
box-shadow: 2px 10px 50px 10px blue;
backface-visibility: hidden;
transform: rotateY(180deg);
}
.flip-card-back-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: black;
color: lightblue;
padding: 0.5rem 1rem;
border: 0.25rem solid blue;
box-shadow: 5px 5px 50px 10px blue;
border-radius: 8px;
margin: 0 0 0.5rem 0;
}
.flip-card-front-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid yellow;
border-radius: 1rem;
background: yellow;
color: #000000;
box-shadow: -2px 10px 50px 10px black;
backface-visibility: hidden;
}
.flip-card-front-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: #000000;
color: #ff8c00;
padding: 0.5rem 1rem;
margin: 40px;
border: 0.25rem solid #ff8c00;
box-shadow: 10px 10px 50px 10px blue;
border-radius: 8px;
}
.container-DL {
display: flex;
margin: 2rem 0.5rem;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
</style>
<!-- Josep Méndez's End -->
<!--Start of REFRAZ1's message-->
<div class="matrix" style="font-size: x-large; border: 0.4px solid #ccc; padding: 3%; margin: 5%;box-shadow: 2px 1px 6px #1e1f32; border-radius: 10px;">
<h3 style="color: rgba(32, 105, 173, 0.933);">I want to thank our mothers for taking care of us. <br>And also W3S for allowing us to learn new skills for free. <br> <br> Remember that the road called “tomorrow” leads to a city called “never” <p style="color: white;">.-. . ..-. .-. .- --.. .----</p> </h3>
<h6 style="font-style: italic;"> Hello from Ukraine </h6>
</div>
<!--End of REFRAZ1's message-->
<!--Start of theoisadoor's message-->
<div class="matrix" style="font-size: large; border: 0.4px solid #ccc; padding: 3%; margin: 5%;box-shadow: 2px 1px 6px #1e1f32; border-radius: 10px;">
<h3 style="color: rgba(0, 0, 0, 1);">thank you W3S, this tutorial has been paramount to my understanding of Git. <br></h3>
</div>
<!--End of theoisadoor's message-->
<!--Start of Deepthi's Message-->
<div class="matrix" style="font-size: large; border: 0.4px solid #28a745; padding: 3%; margin: 5%; box-shadow: 2px 1px 6px #155724; border-radius: 10px; background-color: #d4edda;">
<h3 style="color: #155724; text-align: center;">
A Huge Thank You to W3 Schools! <br><br>
Keep shining, and keep teaching the world! <br><br>
</h3>
<h6 style="text-align: center; font-style: italic;">- A grateful coder </h6>
</div>
<!--End of Deepthi's Message-->
<!--Amadou Habou Gremah Mahamadou : Farkon ayki(start) -->
<div class="container-DLL">
<div class="flip-card-DLL">
<div class="flip-card-inner-DLL" style="width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; position: relative;">
<div class="flip-card-front-DLL">
<h1 class="flip-card-front-DLL-h1">
A big thank you to W3Schools for the invaluable resources,
and to the creator of this brilliant card flip idea!
from <b>Niger</b>, "Mun gode" !
</h1>
<p style="font-size: small;">Survoler pour retourner</p>
</div>
<div class="flip-card-back-DLL">
<h1 class="flip-card-back-DLL-h1">
GREMAH 👌
</h1>
<p>Gremah Mahamadou</p>
<p style="font-size: medium;">vive le Niger/AES</p>
<img src="../Drapeaux_pays_AES.jpg" alt="Aliance des Etats du Sahel" width="50%" height="100px">
<p style="font-size: medium;">Monastir, le 01-31-2025</p>
</div>
</div>
</div>
</div>
<style>
.flip-card-DLL:hover .flip-card-inner-DLL {
transform: rotateX(-180deg);
}
.flip-card-DLL {
font-family: 'Roboto', sans-serif;
width: 350px;
height: 400px;
perspective: 1100px;
}
.flip-card-back-DLL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border:ridge 2px #f3431c;
border-radius: 2rem;
background: #fff;
color: blue;
box-shadow: 2px 10px 50px 10px blue;
backface-visibility: hidden;
transform: rotateX(-180deg);
}
.flip-card-back-DLL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: black;
color: lightblue;
padding: 0.5rem 1rem;
border: 0.25rem solid blue;
box-shadow: 5px 5px 50px 10px blue;
border-radius: 8px;
margin: 0 0 0.5rem 0;
}
.flip-card-front-DLL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid black;
border-radius: 1rem;
background: linear-gradient(to bottom,rgb(255, 94, 0),white, green) !important ;
color: #000000;
box-shadow: -2px 10px 50px 10px black;
backface-visibility: hidden;
}
.flip-card-front-DLL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: rgba(255, 94, 0, 0.785);
color: black;
padding: 0.5rem 1rem;
margin: 40px;
border: 0.25rem double black;
box-shadow: 15px 10px 40px 10px white;
border-radius: 100px;
}
.container-DLL {
display: flex;
margin: 2rem 0.5rem;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
</style>
<!--Amadou Habou Gremah Mahamadou : karshen ayki(end) -->
<!-- Logan Swain's Start -->
<div class="container-DL">
<div class="flip-card-DL">
<div class="flip-card-inner-DL" style="width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; position: relative;">
<div class="flip-card-front-DL">
<h1 class="flip-card-front-DL-h1">
Thank you W3 schools for the great resources,
and also whoever came up with this card flip idea
</h1>
<p style="font-size: small;">Hover to flip</p>
</div>
<div class="flip-card-back-DL">
<h1 class="flip-card-back-DL-h1">
Logan 👌
</h1>
<p style="font-size: medium;">Indiana / US</p>
<p style="font-size: medium;">01-22-2025</p>
</div>
</div>
</div>
</div>
<style>
.flip-card-DL:hover .flip-card-inner-DL {
transform: rotateY(180deg);
}
.flip-card-DL {
font-family: 'Roboto', sans-serif;
width: 350px;
height: 400px;
perspective: 1100px;
}
.flip-card-back-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px #f3431c;
border-radius: 1rem;
background: #000000;
color: blue;
box-shadow: 2px 10px 50px 10px blue;
backface-visibility: hidden;
transform: rotateY(180deg);
}
.flip-card-back-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: black;
color: lightblue;
padding: 0.5rem 1rem;
border: 0.25rem solid blue;
box-shadow: 5px 5px 50px 10px blue;
border-radius: 8px;
margin: 0 0 0.5rem 0;
}
.flip-card-front-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid #f3431c;
border-radius: 1rem;
background: #f3431c;
color: #000000;
box-shadow: -2px 10px 50px 10px black;
backface-visibility: hidden;
}
.flip-card-front-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: #000000;
color: #5c9ef5;
padding: 0.5rem 1rem;
margin: 40px;
border: 0.25rem solid #5c9ef5;
box-shadow: 10px 10px 50px 10px blue;
border-radius: 8px;
}
.container-DL {
display: flex;
margin: 2rem 0.5rem;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
</style>
<!-- Logan Swain's End -->
<!-- Dariusz Larsen's Start -->
<div class="container-DL">
<div class="flip-card-DL">
<div class="flip-card-inner-DL" style="width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; position: relative;">
<div class="flip-card-front-DL">
<h1 class="flip-card-front-DL-h1">
Thanks for all various courses of W3S !!!
</h1>
<p style="font-size: small;">hovering flips</p>
</div>
<div class="flip-card-back-DL">
<h1 class="flip-card-back-DL-h1">
Dariusz Larsen 👍
</h1>
<p style="font-size: medium;">Warsaw / POLAND</p>
<p style="font-size: medium;">2025-01-16</p>
</div>
</div>
</div>
</div>
<style>
.flip-card-DL:hover .flip-card-inner-DL {
transform: rotateY(180deg);
}
.flip-card-DL {
font-family: 'Roboto', sans-serif;
width: 350px;
height: 400px;
perspective: 1100px;
}
.flip-card-back-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid blue;
border-radius: 1rem;
background: #000000;
color: blue;
box-shadow: 2px 10px 50px 10px blue;
backface-visibility: hidden;
transform: rotateY(180deg);
}
.flip-card-back-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: black;
color: lightblue;
padding: 0.5rem 1rem;
border: 0.25rem solid blue;
box-shadow: 5px 5px 50px 10px blue;
border-radius: 8px;
margin: 0 0 0.5rem 0;
}
.flip-card-front-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid yellow;
border-radius: 1rem;
background: yellow;
color: #000000;
box-shadow: -2px 10px 50px 10px black;
backface-visibility: hidden;
}
.flip-card-front-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: #000000;
color: #ff8c00;
padding: 0.5rem 1rem;
margin: 40px;
border: 0.25rem solid #ff8c00;
box-shadow: 10px 10px 50px 10px blue;
border-radius: 8px;
}
.container-DL {
display: flex;
margin: 2rem 0.5rem;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
</style>
<!-- Dariusz Larsen's End -->
<!-- Earl message-->
<div class="container-DL">
<div class="flip-card-DL">
<div class="flip-card-inner-DL" style="width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; position: relative;">
<div class="flip-card-front-DL">
<h1 class="flip-card-front-DL-h1">
Thank you W3 schools for the great resources just started learning yesterday
im kinda getting it now,
and also whoever came up with this card flip idea!!!
</h1>
<p style="font-size: small;">Hover to flip</p>
</div>
<div class="flip-card-back-DL">
<h1 class="flip-card-back-DL-h1">
Logan 👌
</h1>
<p style="font-size: medium;">Philippines</p>
<p style="font-size: medium;">01-30-2025</p>
</div>
</div>
</div>
</div>
<style>
.flip-card-DL:hover .flip-card-inner-DL {
transform: rotateY(180deg);
}
.flip-card-DL {
font-family: 'Roboto', sans-serif;
width: 350px;
height: 400px;
perspective: 1100px;
}
.flip-card-back-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px #f3431c;
border-radius: 1rem;
background: #000000;
color: blue;
box-shadow: 2px 10px 50px 10px blue;
backface-visibility: hidden;
transform: rotateY(180deg);
}
.flip-card-back-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: black;
color: lightblue;
padding: 0.5rem 1rem;
border: 0.25rem solid blue;
box-shadow: 5px 5px 50px 10px blue;
border-radius: 8px;
margin: 0 0 0.5rem 0;
}
.flip-card-front-DL {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid #f3431c;
border-radius: 1rem;
background: #f3431c;
color: #000000;
box-shadow: -2px 10px 50px 10px black;
backface-visibility: hidden;
}
.flip-card-front-DL-h1 {
font-family: 'Roboto', sans-serif;
font-size: 22px;
background-color: #000000;
color: #5c9ef5;
padding: 0.5rem 1rem;
margin: 40px;
border: 0.25rem solid #5c9ef5;
box-shadow: 10px 10px 50px 10px blue;
border-radius: 8px;
}
.container-DL {
display: flex;
margin: 2rem 0.5rem;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
</style>
<!-- End message -->
<!-- Anuj's message start -->
<p> Hi, This is Anuj </p>
<p> Soon, going to be a developer </p>
<p> Hope the transition from Competitive Programmer to a developer will be smooth and amazing. </p>
<!-- Anuj's message ends -->
<h1>Thank you!</h1>
<p>Hello from Lithuania 2025-Jan-22<p>
<h1>Thank you!</h1>
<p>Hello from NYC where congestion pricing is now in effect!<p>
<!--End of Message-->
<!-- Insert your message below here -->
<h1 id="main-header">Thank you, W3Schools</h1>
<p class="location-text">Hello from Nairobi, Kenya</p>
<style>
#main-header {
color: #007bff;
font-size: 2.5em;
text-transform: uppercase;
font-weight: bold;
margin-bottom: 20px;
}
.location-text {
color: #333;
font-size: 1.2em;
font-style: italic;
background-color: #fff;
display: inline-block;
padding: 10px 20px;
border-radius: 8px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
</style>
<!-- End user messages -->
<!-- Start message -->
<h1>Thank you!</h1>
<p>Hello from LV.</p>
<!--End of Message-->
<!-- Start message -->
<h1>Thank you!</h1>
<p>Greetings from Sweden/Stockholm! Thank you so much for providing a great resource!</p>
<p>Kind Regards</p>
<p>Dejan Marlovic</p>
<!--End of Message-->
<!-- Start Message -->
<h3>Thank you!</h3>
<p>Hello from India😀</p>
<!--End of Message-->
<h1>W3 thank u guys for your resources!</h1>
<p>I'm from Colombia. I'm learning how to code with Python on your Website, getting into Git&GitHub, and SQL as well.<p>
<p>I'm aiming to become a Back-End Developer. I'll get there! So thanks for your help!</p>
<!--End of Message-->
<!-- Andri's starts here -->
<h1>W3, thanks for great tutorial</h1>
<p>Happy to learn and get better using these platform</p>
<p>Ukraine/Amsterdam</p>
<!--End of Message-->
<!-- Ethan's message starts here -->
<h1>I LOVE W3SCHOOLS!</h1>
<p>I just started my full stack developer journey and thanks to w3schools i am on my way to making the career switch because i am gaining all the skills i need.</p>
<p>Please keep up the good work, we love it!</p>
<!-- Ethan's message ends here -->
<!-- Ibim's message starts here -->
<h1>W3, thanks for tutorial</h1>
<p>It's been much appreciated.</p>
<p>Regards, Ibim</p>
<!--End of Message-->
<!-- Amirreza's Message starts from here -->
<div style="width: 100%; border: 1px solid #000; margin: 20px auto; border-radius: 5px; overflow: hidden;">
<!-- Green Section -->
<div style="background: green; height: 100px; display: flex; justify-content: center; align-items: center; color: white;">
<h1 style="margin: 0;">Hello from Iran</h1>
</div>
<!-- White Section -->
<div style="background: white; height: 100px; display: flex; justify-content: center; align-items: center; color: black;">
<p style="margin: 0;">Thank's a lot for efforts!</p>
</div>
<!-- Red Section -->