forked from TobiasMue91/tobiasmue91.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
983 lines (929 loc) · 36.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="Bsf604_Gq1q2ils2dQBRL3uxN-ZLhw4RzkgEmxpY29A"/>
<meta name="description" content="A collection of fun games and useful tools created and improved by ChatGPT.">
<meta name="keywords" content="games,tools,fun,collection,created,improved,ChatGPT,converter,generator">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5,minimum-scale=0.5">
<meta name="theme-color" content="#333333">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<title>GptGames | Games and Tools | Made by ChatGPT</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
}
body::before {
content: ' ';
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
background-color: #000;
background-position: center top;
background-size: cover;
background-repeat: no-repeat;
will-change: transform;
}
/* Small background images */
@media (max-width: 767px) {
body.morning::before {
background-image: url(img/small_morning.jpg);
}
body.midday::before {
background-image: url(img/small_midday.jpg);
}
body.evening::before {
background-image: url(img/small_evening.jpg);
}
body.night::before {
background-image: url(img/small_night.jpg);
}
}
/* Medium background images */
@media (min-width: 768px) and (max-width: 1199px) {
body.morning::before {
background-image: url(img/medium_morning.jpg);
}
body.midday::before {
background-image: url(img/medium_midday.jpg);
}
body.evening::before {
background-image: url(img/medium_evening.jpg);
}
body.night::before {
background-image: url(img/medium_night.jpg);
}
}
/* Large background images */
@media (min-width: 1200px) {
body.morning::before {
background-image: url(img/morning.jpg);
}
body.midday::before {
background-image: url(img/midday.jpg);
}
body.evening::before {
background-image: url(img/evening.jpg);
}
body.night::before {
background-image: url(img/night.jpg);
}
}
body.dark {
background-color: #1d1d1d;
color: #ddd;
}
.header {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
}
h1, h2 {
margin: 0;
font-size: 32px;
}
p {
margin: 0;
font-size: 16px;
line-height: 1.4;
color: #333;
text-align: left;
padding: 10px;
}
body.dark p {
color: #ddd;
}
.game-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 50px 0;
}
.game-list.top .game-card {
height: 260px;
}
.game-card {
width: 200px;
height: 400px;
background-color: #fff;
margin: 20px;
box-shadow: 0 0 10px #ccc;
text-align: center;
position: relative;
padding-bottom: 30px;
transition: all 0.2s ease-in-out;
}
body.dark .game-card {
background-color: rgba(20, 20, 20, 0.98);
box-shadow: 0 0 10px #222;
}
.game-card:hover {
transform: scale(1.3);
box-shadow: 0 0 20px #ccc;
z-index: 5;
}
body.dark .game-card:hover {
box-shadow: 0 0 20px #222;
}
.game-card h2 {
font-size: 20px;
color: #333;
padding: 0 10px;
}
body.dark .game-card h2 {
color: #ddd;
}
.game-card p {
margin: 0;
font-size: 16px;
color: #333;
text-align: left;
padding: 20px;
max-height: 100px;
overflow-y: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
}
body.dark .game-card p {
color: #ddd;
}
.game-card p::-webkit-scrollbar {
display: none;
}
.game-card a {
bottom: 20px;
color: #fff;
padding: 10px 20px;
text-decoration: none;
font-size: 16px;
width: 100%;
}
.game-card img {
width: 200px;
height: 200px;
margin-bottom: 10px;
margin-left: -20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.search-container {
display: flex;
justify-content: center;
}
.search-input {
background: #EEE;
width: 500px;
height: 50px;
padding: 10px 20px;
font-size: 20px;
border: none;
border-radius: 25px;
outline: none;
color: #000;
margin: 20px;
}
body.dark .search-input {
background: #222;
color: #fff;
}
#design-switch {
cursor: pointer;
position: absolute;
left: 10px;
padding: 10px;
}
@media (max-width: 768px) {
.header h1 {
font-size: 20px;
margin: 0 45px;
}
.game-list {
margin: 20px 0;
}
.game-card {
width: 200px;
height: 400px;
margin-bottom: 20px;
}
.game-card img {
height: 200px;
width: 200px;
}
.search-container label {
width: 90vw;
}
.search-input {
width: 100%;
padding: 4px;
margin: 20px 0;
}
#design-switch {
left: 0;
}
#design-switch .text {
display: none;
}
}
.badge {
position: relative;
display: inline-block;
width: 200px;
height: 200px;
}
.badge img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.badge:after {
content: "AI POWERED";
position: absolute;
top: 8px;
right: 8px;
font-size: 12px;
font-weight: bold;
color: #fff;
background-color: rgb(43, 89, 44);
padding: 4px 8px;
border-radius: 4px;
text-transform: uppercase;
box-shadow: 0 0 1px 1px rgba(128, 128, 128, 1);
}
</style>
</head>
<body class="dark">
<div class="header">
<div id="design-switch">☀️<span class="text"> Light Mode</span></div>
<h1>Top Games and Tools</h1>
</div>
<div class="game-list top">
<div class="game-card">
<a href="games/family_feud.html">
<div class="badge">
<img src="screenshots/screenshot_54.png" alt="Family Feud Online">
</div>
<h2>Family Feud Online</h2>
</a>
</div>
<div class="game-card">
<a href="games/who_wants_to_be_a_millionaire.html">
<div class="badge">
<img src="screenshots/screenshot_56.png" alt="Who Wants to Be a Millionaire">
</div>
<h2>Who Wants to Be a Millionaire</h2>
</a>
</div>
<div class="game-card">
<a href="tools/argumentator/argumentator.html">
<div class="badge">
<img src="screenshots/screenshot_61.png" alt="Argumentator">
</div>
<h2>Argumentator</h2>
</a>
</div>
<div class="game-card">
<a href="games/monkeytype.html">
<img src="screenshots/screenshot_52.png" alt="Monkeytype Clone">
<h2>Monkeytype Clone</h2>
</a>
</div>
<div class="game-card">
<a href="games/sudoku.html">
<img src="screenshots/screenshot_16.png" alt="Sudoku">
<h2>Sudoku</h2>
</a>
</div>
<div class="game-card">
<a href="tools/household_planner.html">
<img src="screenshots/screenshot_55.png" alt="Household Planner">
<h2>Household Planner</h2>
</a>
</div>
<div class="game-card">
<a href="tools/gptranslator.html">
<div class="badge">
<img src="screenshots/screenshot_62.png" alt="GPTranslator">
</div>
<h2>GPTranslator</h2>
</a>
</div>
</div>
<div class="header">
<h2>List of Games created and improved by ChatGPT</h2>
</div>
<div class="search-container">
<label>
<input type="search" class="search-input" placeholder="🔍 Search for a game or tool" aria-label="Search input">
</label>
</div>
<div class="game-list" style="margin-top: 0;">
<div class="game-card">
<a href="games/2048.html">
<img src="screenshots/screenshot_0.png" alt="2048">
<h2>2048</h2>
<p>A puzzle game where the player combines numbers to reach the goal of 1024.</p>
</a>
</div>
<div class="game-card">
<a href="games/asteroids.html">
<img src="screenshots/screenshot_37.png" alt="Asteroids">
<h2>Asteroids</h2>
<p>Survive asteroid and enemy attacks in this retro-inspired space shooter. Aim, shoot, and dodge your way
to victory!</p>
</a>
</div>
<div class="game-card">
<a href="games/ball_bouncing.html">
<img src="screenshots/screenshot_1.png" alt="Ball Bouncing">
<h2>Ball Bouncing</h2>
<p>A fun game where you have to keep the ball bouncing!</p>
</a>
</div>
<div class="game-card">
<a href="games/blackjack.html">
<img src="screenshots/screenshot_48.png" alt="Blackjack">
<h2>Blackjack</h2>
<p>Experience the thrill of the casino with none of the risk! Play online blackjack for free today.</p>
</a>
</div>
<div class="game-card">
<a href="games/breakout.html">
<img src="screenshots/screenshot_2.png" alt="Breakout">
<h2>Breakout</h2>
<p>Classic arcade game where you have to break all the bricks!</p>
</a>
</div>
<div class="game-card">
<a href="games/catchcircle.html">
<img src="screenshots/screenshot_3.png" alt="Catch Circle">
<h2>Catch Circle</h2>
<p>A fast-paced game where you have to catch the moving circles!</p>
</a>
</div>
<div class="game-card">
<a href="games/animals.html">
<img src="screenshots/screenshot_4.png" alt="Catching Game for Cats 🐱">
<h2>Catching Game for Cats 🐱</h2>
<p>A fun game for cats where they have to catch the moving objects!</p>
</a>
</div>
<div class="game-card">
<a href="games/checkers.html">
<img src="screenshots/screenshot_59.png" alt="Checkers">
<h2>Checkers</h2>
<p>Jump, capture, and king your way to victory in this classic checkers game with a modern twist - built
with Vue 3!</p>
</a>
</div>
<div class="game-card">
<a href="games/chess.html">
<img src="screenshots/screenshot_42.png" alt="Chess">
<h2>Chess</h2>
<p>Are you ready to immerse yourself in a game of mental mastery? This singleplayer chess game lets you
experience
the thrill of the world's most popular board game without any distractions or hassles. With its
intuitive touch
and mouse controls, you can move your pieces with ease and focus on your next strategic move. The
elegant design
and realistic sound effects add to the immersive experience, while the saved games feature lets you come
back to
your game later. Challenge yourself to become a grandmaster with this fun and addictive chess game!</p>
</a>
</div>
<div class="game-card">
<a href="games/connect_four.html">
<img src="screenshots/screenshot_5.png" alt="Connect Four">
<h2>Connect Four</h2>
<p>Classic strategy game where you have to connect four pieces in a row!</p>
</a>
</div>
<div class="game-card">
<a href="games/crazy_eights.html">
<img src="screenshots/screenshot_50.png" alt="Crazy Eights">
<h2>Crazy Eights</h2>
<p>Get crazy with friends and family playing the classic game of Crazy Eights! Be the first to empty your
hand to win!</p>
</a>
</div>
<div class="game-card">
<a href="games/obstacle_dodge.html">
<img src="screenshots/screenshot_6.png" alt="Dodge the Obstacles">
<h2>Dodge the Obstacles</h2>
<p>Dodge the Obstacles is a thrilling game where you control a character and avoid obstacles to score
points!</p>
</a>
</div>
<div class="game-card">
<a href="games/doodling.html">
<img src="screenshots/screenshot_7.png" alt="Doodling">
<h2>Doodling</h2>
<p>A relaxing game where you can unleash your creativity and doodle away!</p>
</a>
</div>
<div class="game-card">
<a href="games/duck_hunt.html">
<img src="screenshots/screenshot_51.png" alt="Duck Hunt">
<h2>Duck Hunt</h2>
<p>Take aim and blast feathered targets in this classic shooter.</p>
</a>
</div>
<div class="game-card">
<a href="games/escape_the_maze.html">
<img src="screenshots/screenshot_41.png" alt="Escape the Maze">
<h2>Escape the Maze</h2>
<p>A challenging 3D game where you try to escape from a randomly generated maze.</p>
</a>
</div>
<div class="game-card">
<a href="games/family_feud.html">
<img src="screenshots/screenshot_54.png" alt="Family Feud Online">
<h2>(AI) Family Feud Online</h2>
<p>An AI-powered game that generates questions and answers for endless fun.</p>
</a>
</div>
<div class="game-card">
<a href="games/fishing.html">
<img src="screenshots/screenshot_34.png" alt="Fishing Game" loading="lazy">
<h2>Fishing Game</h2>
<p>Reel in the biggest catch in this ocean adventure! Hook rare and exotic fish and become the best
fisherman the
world has ever seen!</p>
</a>
</div>
<div class="game-card">
<a href="games/flappy_bird.html">
<img src="screenshots/screenshot_33.png" alt="Flappy Bird">
<h2>Flappy Bird</h2>
<p>Tap your way through a series of pipes and try not to crash in this addictive game.</p>
</a>
</div>
<div class="game-card">
<a href="games/frogger.html">
<img src="screenshots/screenshot_58.png" alt="Frogger">
<h2>Frogger</h2>
<p>Hop into action! Help the frog cross busy roads and rivers to reach its destination. Watch out for those
sneaky logs!</p>
</a>
</div>
<div class="game-card">
<a href="games/hangman.html">
<img src="screenshots/screenshot_45.png" alt="Hangman" loading="lazy">
<h2>Hangman</h2>
<p>Hangman is a thrilling game of life and death, where players have to use their wits to guess a hidden
word
letter by letter, or else face a gruesome fate.</p>
</a>
</div>
<div class="game-card">
<a href="games/human_benchmark.html">
<img src="screenshots/screenshot_57.png" alt="Human Benchmark Tests" loading="lazy">
<h2>Human Benchmark Tests</h2>
<p>Test your memory, reaction time, and cognitive skills with Human Benchmark Tests, the ultimate brain
challenge!</p>
</a>
</div>
<div class="game-card">
<a href="games/monkeytype.html">
<img src="screenshots/screenshot_52.png" alt="Monkeytype Clone" loading="lazy">
<h2>Monkeytype Clone</h2>
<p>Get typing! Race against time in Monkeytype's word-per-minute frenzy. Accuracy counts. Ready, set,
type!</p>
</a>
</div>
<div class="game-card">
<a href="games/number_guess.html">
<img src="screenshots/screenshot_8.png" alt="Guess the Number" loading="lazy">
<h2>Guess the Number</h2>
<p>Test your luck and skill to discover the hidden number!</p>
</a>
</div>
<div class="game-card">
<a href="games/jump.html">
<img src="screenshots/screenshot_9.png" alt="Joodle Dump" loading="lazy">
<h2>Joodle Dump</h2>
<p>A fun game where you have to help the character jump on platforms to get as high as possible!</p>
</a>
</div>
<div class="game-card">
<a href="games/memory_match.html">
<img src="screenshots/screenshot_40.png" alt="Memory Match" loading="lazy">
<h2>Memory Match</h2>
<p>Test your memory with cute emojis! Flip and match cards before time runs out. Have fun with Memory
Match!</p>
</a>
</div>
<div class="game-card">
<a href="games/minesweeper.html">
<img src="screenshots/screenshot_11.png" alt="Minesweeper" loading="lazy">
<h2>Minesweeper</h2>
<p>A classic strategy game where you have to find the hidden mines without detonating them!</p>
</a>
</div>
<div class="game-card">
<a href="games/pong.html">
<img src="screenshots/screenshot_12.png" alt="Pong" loading="lazy">
<h2>Pong</h2>
<p>A classic arcade game where you have to hit the ball back and forth without missing it!</p>
</a>
</div>
<div class="game-card">
<a href="games/rock_paper_scissors.html">
<img src="screenshots/screenshot_13.png" alt="Rock-Paper-Scissors" loading="lazy">
<h2>Rock-Paper-Scissors</h2>
<p>A classic game of strategy where you have to pick either rock, paper, or scissors and see if you can beat
your
opponent!</p>
</a>
</div>
<div class="game-card">
<a href="games/simon_says.html">
<img src="screenshots/screenshot_14.png" alt="Simon Says" loading="lazy">
<h2>Simon Says</h2>
<p>A memory game where you have to follow the sequence of commands and repeat it back!</p>
</a>
</div>
<div class="game-card">
<a href="games/snake.html">
<img src="screenshots/screenshot_15.png" alt="Snake" loading="lazy">
<h2>Snake</h2>
<p>A classic arcade game where you have to guide the snake to eat the food and grow as long as possible!</p>
</a>
</div>
<div class="game-card">
<a href="games/sudoku.html">
<img src="screenshots/screenshot_16.png" alt="Sudoku" loading="lazy">
<h2>Sudoku</h2>
<p>Sudoku is a classic puzzle game where you fill in the missing numbers in a 9x9 grid.</p>
</a>
</div>
<div class="game-card">
<a href="games/invaders.html">
<img src="screenshots/screenshot_17.png" alt="Space Invaders (incomplete)" loading="lazy">
<h2>Space Invaders (incomplete)</h2>
<p>A classic arcade game where you have to defend your planet from alien invaders!</p>
</a>
</div>
<div class="game-card">
<a href="games/tetris.html">
<img src="screenshots/screenshot_44.png" alt="Tetris" loading="lazy">
<h2>Tetris</h2>
<p>Welcome to the ultimate Tetris experience! Play the classic game with a new twist and beat your high
score!</p>
</a>
</div>
<div class="game-card">
<a href="games/tic_tac_toe_mp.html">
<img src="screenshots/screenshot_32.png" alt="Tic-Tac-Toe Multiplayer" loading="lazy">
<h2>Tic-Tac-Toe</h2>
<p>Play Tic Tac Toe with a friend online, and battle it out for ultimate board supremacy!</p>
</a>
</div>
<div class="game-card">
<a href="games/time_travel_agency.html">
<img src="screenshots/screenshot_70.png" alt="Time Travel Agency" loading="lazy">
<h2>Time Travel Agency</h2>
<p>Travel through time, recruit historical geniuses, and expand your Time Travel Agency in this idle adventure!</p>
</a>
</div>
<div class="game-card">
<a href="games/typing_game.html">
<img src="screenshots/screenshot_18.png" alt="Typing Game" loading="lazy">
<h2>Typing Game</h2>
<p>A game to test your typing speed and accuracy!</p>
</a>
</div>
<div class="game-card">
<a href="games/whac.html">
<img src="screenshots/screenshot_19.png" alt="Whac-a-Hedgehog" loading="lazy">
<h2>Whac-a-Hedgehog</h2>
<p>A fun arcade game where you have to whack the hedgehog as it pops up from its hole!</p>
</a>
</div>
<div class="game-card">
<a href="games/who_wants_to_be_a_millionaire.html">
<img src="screenshots/screenshot_56.png" alt="Who Wants to Be a Millionaire" loading="lazy">
<h2>Who Wants to Be a Millionaire</h2>
<p>Test your knowledge and win big in "Who Wants to Be a Millionaire?" game, featuring AI-generated
questions and multiple levels of difficulty!</p>
</a>
</div>
<div class="game-card">
<a href="games/word_search.html">
<img src="screenshots/screenshot_43.png" alt="Word Search" loading="lazy">
<h2>Word Search</h2>
<p>Play a fun and challenging word search game with a randomly generated puzzle and a variety of words to
find.</p>
</a>
</div>
</div>
<div class="header">
<h2>List of Tools created and improved by ChatGPT</h2>
</div>
<div class="game-list">
<div class="game-card">
<a href="tools/1337.html">
<img src="screenshots/screenshot_20.png" alt="Leetspeak converter" loading="lazy">
<h2>Leetspeak converter</h2>
<p>Convert text to Leetspeak and vice versa!<br/><br/>C0nv3r7 73x7 70 L3375p34k 4nd v1c3 v3r54!</p>
</a>
</div>
<div class="game-card">
<a href="tools/color_picker.html">
<img src="screenshots/screenshot_21.png" alt="Color Picker" loading="lazy">
<h2>Color Picker</h2>
<p>Pick a color and easily copy its rgb, cmyk, hls or hex representation!</p>
</a>
</div>
<div class="game-card">
<a href="tools/word_counter.html">
<img src="screenshots/screenshot_22.png" alt="Word and Character counter" loading="lazy">
<h2>Word/Character counter</h2>
<p>Paste long texts to count their words and characters in real time!</p>
</a>
</div>
<div class="game-card">
<a href="tools/minify.html">
<img src="screenshots/screenshot_23.png" alt="HTML Minify" loading="lazy">
<h2>HTML Minify</h2>
<p>Minify HTML code.</p>
</a>
</div>
<div class="game-card">
<a href="tools/timer.html">
<img src="screenshots/screenshot_24.png" alt="Online Timer" loading="lazy">
<h2>Online Timer</h2>
<p>A simple alarm clock.</p>
</a>
</div>
<div class="game-card">
<a href="tools/number_converter.html">
<img src="screenshots/screenshot_25.png" alt="Number Converter" loading="lazy">
<h2>Number Converter</h2>
<p>Convert a decimal number to every number system under the base of 10.</p>
</a>
</div>
<div class="game-card">
<a href="tools/unix_converter.html">
<img src="screenshots/screenshot_26.png" alt="Unix Timestamp Converter" loading="lazy">
<h2>Unix Timestamp Converter</h2>
<p>Convert Unix Timestamps to Date and Time and vice versa.</p>
</a>
</div>
<div class="game-card">
<a href="tools/password_generator.html">
<img src="screenshots/screenshot_27.png" alt="Secure Password Generator" loading="lazy">
<h2>Secure Password Generator</h2>
<p>A customizable Password Generator that creates secure passwords, with an estimated strength rating, and a
click-to-copy output field.</p>
</a>
</div>
<div class="game-card">
<a href="tools/lorem_ipsum.html">
<img src="screenshots/screenshot_28.png" alt="Lorem Ipsum Generator" loading="lazy">
<h2>Lorem Ipsum Generator</h2>
<p>Generate placeholder text quickly and easily with our Lorem Ipsum Generator, perfect for design mockups
and
content prototypes.</p>
</a>
</div>
<div class="game-card">
<a href="tools/url_encoder.html">
<img src="screenshots/screenshot_29.png" alt="URL Encoder/Decoder" loading="lazy">
<h2>URL Encoder/Decoder</h2>
<p>Encode and decode any URL with ease using our powerful and intuitive tool – no more broken links!</p>
</a>
</div>
<div class="game-card">
<a href="tools/qr_generator.html">
<img src="screenshots/screenshot_30.png" alt="QR Code Generator" loading="lazy">
<h2>QR Code Generator</h2>
<p>Unleash your inner secret agent with our QR code generator! Create codes that lead to surprise messages,
memes,
and more. It's spy-tacular!</p>
</a>
</div>
<div class="game-card">
<a href="tools/markdown_converter.html">
<img src="screenshots/screenshot_31.png" alt="Markdown Converter" loading="lazy">
<h2>Markdown Converter</h2>
<p>Transform plain markdown text into stunning HTML with the snap of a finger, thanks to our magically
simple
Markdown Converter!</p>
</a>
</div>
<div class="game-card">
<a href="tools/box_shadow_generator.html">
<img src="screenshots/screenshot_35.png" alt="Box Shadow Generator" loading="lazy">
<h2>Box Shadow Generator</h2>
<p>Create and customize CSS box shadows with ease using our Box-Shadow CSS Generator! With multiple options
and
parameters, the possibilities are endless!</p>
</a>
</div>
<div class="game-card">
<a href="tools/text_shadow_generator.html">
<img src="screenshots/screenshot_36.png" alt="Text Shadow Generator" loading="lazy">
<h2>Text Shadow Generator</h2>
<p>Level up your typography game with our quirky and fun Text Shadow Generator! Adjust shadows with ease and
create unique, stunning text effects in seconds.</p>
</a>
</div>
<div class="game-card">
<a href="tools/temperature_converter.html">
<img src="screenshots/screenshot_38.png" alt="Temperature Converter" loading="lazy">
<h2>Temperature Converter</h2>
<p>A tool to calculate hot or coldness, a digital thermometer for multiple measurements with pretty colors
and
easy use.</p>
</a>
</div>
<div class="game-card">
<a href="tools/regex_tester.html">
<img src="screenshots/screenshot_39.png" alt="Regular Expression Tester" loading="lazy">
<h2>Regular Expression Tester</h2>
<p>Find & replace patterns in text. Get real-time feedback, explanations & examples.</p>
</a>
</div>
<div class="game-card">
<a href="tools/hash_generator.html">
<img src="screenshots/screenshot_46.png" alt="Hash Generator" loading="lazy">
<h2>Hash Generator</h2>
<p>Generate hashes from input strings with different hashing methods like sha256, MD5, RIPEMD-160 etc.</p>
</a>
</div>
<div class="game-card">
<a href="tools/html_entities_converter.html">
<img src="screenshots/screenshot_47.png" alt="HTML Entity Converter" loading="lazy">
<h2>HTML Entity Converter</h2>
<p>Convert special characters to their corresponding HTML entities with this free online tool.</p>
</a>
</div>
<div class="game-card">
<a href="tools/code_diff.html">
<img src="screenshots/screenshot_49.png" alt="Code/Text Diff Tool" loading="lazy">
<h2>Code/Text Diff Tool</h2>
<p>"Spot the difference" for code and text! Easily compare and contrast with an edgy design.</p>
</a>
</div>
<div class="game-card">
<a href="tools/unit_converter.html">
<img src="screenshots/screenshot_53.png" alt="Unit Converter" loading="lazy">
<h2>Unit Converter</h2>
<p>Transform units like a boss! This unit converter is so epic, it'll make your head spin. Get ready for the
ride of your life!</p>
</a>
</div>
<div class="game-card">
<a href="tools/household_planner.html">
<img src="screenshots/screenshot_55.png" alt="Household Planner" loading="lazy">
<h2>Household Planner</h2>
<p>Say goodbye to household chaos with our planner - the ultimate taskmaster! 😎👌🏠</p>
</a>
</div>
<div class="game-card">
<a href="tools/calculator.html">
<img src="screenshots/screenshot_60.png" alt="Calculator" loading="lazy">
<h2>Calculator</h2>
<p>Discover the joys of math with our sleek, modern scientific calculator, packed with advanced features and
a user-friendly interface for endless exploration!</p>
</a>
</div>
<div class="game-card">
<a href="tools/argumentator/argumentator.html">
<img src="screenshots/screenshot_61.png" alt="Argumentator" loading="lazy">
<h2>Argumentator</h2>
<p>Unleash your inner debater with Argumentator! Craft compelling arguments in a snap, tailored to your
desired characteristics. Master the art of persuasion today!</p>
</a>
</div>
<div class="game-card">
<a href="tools/gptranslator.html">
<img src="screenshots/screenshot_62.png" alt="GPTranslator" loading="lazy">
<h2>GPTranslator</h2>
<p>Discover GpTranslator, your go-to language wizard! Effortlessly translate text with automatic language detection and context-aware accuracy in a sleek, user-friendly interface.</p>
</a>
</div>
<div class="game-card">
<a href="tools/json_formatter.html">
<img src="screenshots/screenshot_63.png" alt="JSON Formatter" loading="lazy">
<h2>JSON Formatter</h2>
<p>Transform messy JSON into a beautiful and organized format with just a click! Copy and paste your JSON code and voila!</p>
</a>
</div>
<div class="game-card">
<a href="tools/age_calculator.html">
<img src="screenshots/screenshot_64.png" alt="Age Calculator" loading="lazy">
<h2>Age Calculator</h2>
<p>Find out how many months, weeks, days, hours, minutes, and seconds old you are with this fun Age Calculator web tool!</p>
</a>
</div>
<div class="game-card">
<a href="tools/emoji_search.html">
<img src="screenshots/screenshot_65.png" alt="Emoji Search" loading="lazy">
<h2>Emoji Search</h2>
<p>Find your favorite emoji with ease using this fun and user-friendly Emoji Search Tool! 🎉🔍😍</p>
</a>
</div>
<div class="game-card">
<a href="tools/css_gradient_generator.html">
<img src="screenshots/screenshot_66.png" alt="CSS Gradient Generator" loading="lazy">
<h2>CSS Gradient Generator</h2>
<p>Create stunning CSS gradients with ease using this fun and user-friendly web tool!</p>
</a>
</div>
<div class="game-card">
<a href="tools/stopwatch.html">
<img src="screenshots/screenshot_67.png" alt="Stopwatch" loading="lazy">
<h2>Stopwatch</h2>
<p>Race against time with our sleek and user-friendly stopwatch web tool - perfect for timing workouts, races, and more!</p>
</a>
</div>
<div class="game-card">
<a href="tools/photo_filter_editor.html">
<img src="screenshots/screenshot_68.png" alt="Photo Filter Editor" loading="lazy">
<h2>Photo Filter Editor</h2>
<p>Capture life's moments and unleash your creativity with our vibrant Photo Filter Editor! Effortlessly enhance, personalize, and transform your images in a snap.</p>
</a>
</div>
<div class="game-card">
<a href="tools/file_size_converter.html">
<img src="screenshots/screenshot_69.png" alt="File Size Converter" loading="lazy">
<h2>File Size Converter</h2>
<p>Easily juggle digital weights with our sleek File Size Converter - your go-to gadget for byte-to-terabyte transformations in a snap!</p>
</a>
</div>
</div>
<script src="sidebar.js" data-position="top-right"></script>
<script src="timeline.js"></script>
<script>
const gameCards = document.querySelectorAll('.game-card');
const searchInput = document.querySelector('.search-input');
window.addEventListener('load', e => {
document.querySelector('.search-input').focus();
const designSwitch = document.querySelector('#design-switch');
const savedDesign = localStorage.getItem('gptdesignmode');
if (savedDesign === 'light') {
document.body.classList.remove('dark');
designSwitch.innerHTML = '🌙<span class="text"> Dark Mode</span>';
}
designSwitch.addEventListener('click', e => {
const isDarkMode = document.body.classList.contains('dark');
if (isDarkMode) {
document.body.classList.remove('dark');
designSwitch.innerHTML = '🌙<span class="text"> Dark Mode</span>';
} else {
document.body.classList.add('dark');
designSwitch.innerHTML = '☀️<span class="text"> Light Mode</span>';
}
localStorage.setItem('gptdesignmode', isDarkMode ? 'light' : 'dark');
})
});
searchInput.addEventListener('input', function () {
const searchTerm = this.value.toLowerCase();
gameCards.forEach(function (gameCard) {
const gameTitle = gameCard.querySelector('h2').textContent.toLowerCase();
if (gameTitle.indexOf(searchTerm) !== -1) {
gameCard.style.display = 'block';
} else {
gameCard.style.display = 'none';
}
});
});
</script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<script>
// Get the current hour using the Date object
const now = new Date();
const hour = now.getHours();
// Determine which image to use based on the current hour
let background;
if (hour >= 5 && hour < 11) {
background = 'morning';
} else if (hour >= 11 && hour < 16) {
background = 'midday';
} else if (hour >= 16 && hour < 19) {
background = 'evening';
} else {
background = 'night';
}
document.body.classList.add(background);
</script>
<script src="notification.js"></script>
</body>
</html>