-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2864 lines (2156 loc) · 82.8 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 lang="en" >
<style>
body, html
{
height: 100%;
color: beige;
font-size: xx-large;
text-align: center;
vertical-align: middle;
background-color: #24282f;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.abs, h2:after,
.cards .card figcaption,
.cards .card:after,
.news .card figcaption,
.news .card:after,
.news .article figcaption {
position: absolute;
}
.rel,
h2,
h2 strong,
.cards .card,
.news .card,
.news .article {
border-radius: 25px;
position: relative;
}
.fix {
position: fixed;
}
.dfix {
display: inline;
}
.dib {
display: inline-block;
}
.db {
display: block;
}
.dn {
display: none;
}
.df,
.cards,
.news {
display: flex;
}
.dif {
display: inline-flex;
}
.dg {
display: grid;
}
.dig {
display: inline-grid;
}
.vm,
h2,
h2 strong,
h2 span {
vertical-align: middle;
}
.wrapper {
padding: 15px;
}
h2 {
padding: 10px;
padding-left: 25px;
color: #ccc;
margin: 0;
}
h2 strong {
z-index: 2;
background: #24282f;
padding: 4px 8px;
}
h2 span {
font-size: 0.7em;
color: #aaa;
margin-left: 10px;
}
h2:after {
content: '';
z-index: 1;
bottom: 50%;
margin-bottom: -2px;
height: 2px;
left: 0;
right: 0;
background: #373d47;
}
.cards,
.news {
flex-flow: row wrap;
}
.cards .card,
.news .card {
margin: 20px;
width: 180px;
height: 270px;
overflow: hidden;
box-shadow: 0 5px 10px rgba(0,0,0,0.8);
transform-origin: center top;
transform-style: preserve-3d;
transform: translateZ(0);
transition: 0.3s;
}
.cards .card img,
.news .card img {
width: 100%;
min-height: 100%;
}
.cards .card figcaption,
.news .card figcaption {
bottom: 0;
left: 0;
right: 0;
padding: 20px;
padding-bottom: 10px;
font-size: 20px;
background: none;
color: #fff;
transform: translateY(100%);
transition: 0.3s;
}
.news {
display: flex;
flex-direction: column;
}
.cards .card:after,
.news .card:after {
content: '';
z-index: 10;
width: 200%;
height: 100%;
top: -90%;
left: -20px;
opacity: 0.1;
transform: rotate(45deg);
background: linear-gradient(to top, transparent, #fff 15%, rgba(255,255,255,0.5));
transition: 0.3s;
}
.cards .card:hover,
.news .card:hover,
.cards .card:focus,
.news .card:focus,
.cards .card:active,
.news .card:active {
box-shadow: 0 8px 16px 3px rgba(0,0,0,0.6);
transform: translateY(-3px) scale(1.05) rotateX(15deg);
}
.cards .card:hover figcaption,
.news .card:hover figcaption,
.cards .card:focus figcaption,
.news .card:focus figcaption,
.cards .card:active figcaption,
.news .card:active figcaption {
transform: none;
}
.cards .card:hover:after,
.news .card:hover:after,
.cards .card:focus:after,
.news .card:focus:after,
.cards .card:active:after,
.news .card:active:after {
transform: rotate(25deg);
top: -40%;
opacity: 0.15;
}
.news .article {
overflow: hidden;
width: 350px;
height: 235px;
margin: 20px;
}
.news .article img {
width: 100%;
min-height: 100%;
transition: 0.2s;
}
.news .article figcaption {
font-size: 14px;
text-shadow: 0 1px 0 rgba(51,51,51,0.3);
left: 0;
right: 0;
top: 0;
bottom: 0;
padding: 40px;
box-shadow: 0 0 2px rgba(0,0,0,0.2);
background: rgba(6,18,53,0.6);
opacity: 0;
transform: scale(1.15);
transition: 0.2s;
}
.news .article figcaption h3 {
color: #3792e3;
font-size: 16px;
margin-bottom: 0;
font-weight: bold;
}
.news .article:hover img,
.news .article:focus img,
.news .article:active img {
filter: blur(3px);
transform: scale(0.97);
}
.news .article:hover figcaption,
.news .article:focus figcaption,
.news .article:active figcaption {
opacity: 1;
transform: none;
}
#searchbar{
padding:15px;
border-radius: 10px;
background-color: rgb(69, 69, 69);
text-align: center;
}
input[type=text] {
-webkit-transition: width 0.15s ease-in-out;
transition: width 0.15s ease-in-out;
}
#list{
font-size: 1.5em;
margin-left: 90px;
}
.button:hover {
background-color: #555555;
color: white;
}
.button:hover {
background-color: #555555;
color: white;
}
</style>
<head>
<link rel="shortcut icon" type="image/ico" href="img/favicon.ico">
<meta charset="UTF-8">
<title>strongdog XP</title>
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans&display=swap" rel="stylesheet"><link rel="stylesheet" href="./style.css">
<input id="searchbar" onkeyup="search_game()" type="text"
name="search" placeholder="Search top 10..">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="wrapper">
<a style="font-size:x-large; color: rgb(0, 0, 0);">StrongDog</a>
<a style="font-size:xx-large; color: darkorange;"> XP</a>
<br></br>
<p>Wussup, I have downloaded and am now hosting ALL of strongdog! If you find any stupid errors or bugs or games that don't work tell me</p>
<h2><strong>Top 10<span></span></strong></h2>
<ol id='list'>
<div class="cards">
<a href="./html/drive-mad/index.html" class="card">
<img src="./img/drivemad.jpg"></img>
<figcaption style="color:black">drive mad</figcaption>
</a>
<a href="./html/eaglecraft/Offline_Download_Version.html" class="card">
<img src="./img/minecraft.jpeg"></img>
<figcaption style="color:black">minecraft</figcaption>
</a>
<a href="./html/retrobowl/index.html" class="card">
<img src="./img/retrobowl.webp"></img>
<figcaption style="color:black">retro bowl</figcaption>
</a>
<a href="./html/1v1/index.html" class="card">
<img src="./img/1v1.webp"></img>
<figcaption style="color:black">1v1.lol</figcaption>
</a>
<a href="./html/ovo/index.html" class="card">
<img src="./img/ovo.png"></img>
<figcaption>ovo</figcaption>
</a>
<a href="./html/planetlife/index.html" class="card">
<img src="./img/planetlife.jpg"></img>
<figcaption style="color:black">Planet life</figcaption>
</a>
<a href="./html/houseofhazards/index.html" class="card">
<img src="./img/houseofhazards.jpg"></img>
<figcaption>House of hazards</figcaption>
</a>
<a href="./swf/hauntthehouse/base.html" class="card">
<img src="./img/hauntthehouse.jpg"></img>
<figcaption>haunt the house</figcaption>
</a>
<a href="./html/drift-boss/index.html" class="card">
<img src="./img/drift-boss.png"></img>
<figcaption style="color:black">Drift boss</figcaption>
</a>
<a href="./html/snow-rider-3d/index.html" class="card">
<img src="./img/snow-rider-3d-unblocked.png"></img>
<figcaption style="color:black">snow riders 3d</figcaption>
</a>
</ol>
</div>
<input id="searchbar" onkeyup="search_game()" type="text"
name="search" placeholder="Search games..">
<h2><strong>All Games<span></span></strong></h2>
<!-- ordered list -->
<ol id='list'>
<div class="cards" class="games">
<a href="./html/canvas/canvas.html" class="card">
<img src="./img/canvas.png"></img>
<figcaption style="color:black">canvas</figcaption>
<a href="./html/yin and yang/index.html" class="card">
<img src="./img/yin and yang.jpg"></img>
<figcaption style="color:black">yin and yang</figcaption>
</a>
<a href="./swf/arcuz/base.html" class="card">
<img src="./img/arcuz.jpg"></img>
<figcaption style="color:black">arcuz</figcaption>
</a>
<a href="./swf/age of war/base.html" class="card">
<img src="./img/age of war.jpg"></img>
<figcaption style="color:black">age of war</figcaption>
</a>
<a href="./html/winter gifts/index.html" class="card">
<img src="./img/winter gifts.jpg"></img>
<figcaption style="color:black">winter gifts</figcaption>
</a>
<a href="./html/tough growth/index.html" class="card">
<img src="./img/tough growth.jpg"></img>
<figcaption style="color:black">tough growth</figcaption>
</a>
<a href="./html/the dark one/index.html" class="card">
<img src="./img/the dark one.jpg"></img>
<figcaption style="color:black">the dark one</figcaption>
</a>
<a href="./html/tactical weapon pack/index.html" class="card">
<img src="./img/tactical weapon pack.png"></img>
<figcaption style="color:black">tactical weapon pack</figcaption>
</a>
<a href="./html/soul mirror/index.html" class="card">
<img src="./img/soul mirror.jpg"></img>
<figcaption style="color:black">soul mirror</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad8 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="3325440836"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./html/push/index.html" class="card">
<img src="./img/push.jpg"></img>
<figcaption style="color:black">push</figcaption>
</a>
<a href="./html/progress knight/index.html" class="card">
<img src="./img/progress knight.png"></img>
<figcaption style="color:black">progress knight</figcaption>
</a>
<a href="./html/pe norie/index.html" class="card">
<img src="./img/pe norie.jpg"></img>
<figcaption style="color:black">pe norie</figcaption>
</a>
<a href="./html/orange/index.html" class="card">
<img src="./img/orange.png"></img>
<figcaption style="color:black">orange</figcaption>
</a>
<a href="./html/one trick mage/index.html" class="card">
<img src="./img/one trick mage.png"></img>
<figcaption style="color:black">one trick mage</figcaption>
</a>
<a href="./html/mini sticky/index.html" class="card">
<img src="./img/mini sticky.avif"></img>
<figcaption style="color:black">mini sticky</figcaption>
</a>
<a href="./html/mini jumps/index.html" class="card">
<img src="./img/mini jumps.png"></img>
<figcaption style="color:black">mini jumps</figcaption>
</a>
<a href="./html/life in the static/index.html" class="card">
<img src="./img/life in the static.jpg"></img>
<figcaption style="color:black">life in the static</figcaption>
</a>
<a href="./html/laqueus escape chapter 1/index.html" class="card">
<img src="./img/laqueus escape chapter 1.avif"></img>
<figcaption style="color:black">laqueus escape chapter 1</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad9 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="2287691330"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./html/just passing/index.html" class="card">
<img src="./img/just passing.png"></img>
<figcaption style="color:black">just passing</figcaption>
</a>
<a href="./html/hexa knot/index.html" class="card">
<img src="./img/hexa knot.png"></img>
<figcaption style="color:black">hexa knot</figcaption>
</a>
<a href="./html/hasty shaman/index.html" class="card">
<img src="./img/hasty shaman.png"></img>
<figcaption style="color:black">hasty shaman</figcaption>
</a>
<a href="./html/goodbye doggy/index.html" class="card">
<img src="./img/goodbye doggy.jpg"></img>
<figcaption style="color:black">goodbye doggy</figcaption>
</a>
<a href="./html/generic fishing game/index.html" class="card">
<img src="./img/generic fishing game.png"></img>
<figcaption style="color:black">generic fishing game</figcaption>
</a>
<a href="./html/dubstep raven/index.html" class="card">
<img src="./img/dubstep raven.png"></img>
<figcaption style="color:black">dubstep raven</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad10 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="7348446328"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./html/doodle alive/index.html" class="card">
<img src="./img/doodle alive.jpg"></img>
<figcaption style="color:black">doodle alive</figcaption>
</a>
<a href="./html/detective bass fish/index.html" class="card">
<img src="./img/detective bass fish.webp"></img>
<figcaption style="color:black">detective bass fish</figcaption>
</a>
<a href="./html/cursed travels below/index.html" class="card">
<img src="./img/cursed travels below.png"></img>
<figcaption style="color:black">cursed travels below</figcaption>
</a>
<a href="./html/clickventure castaway/index.html" class="card">
<img src="./img/clickventure castaway.jpg"></img>
<figcaption style="color:black">clickventure castaway</figcaption>
</a>
<a href="./html/choppy orc/index.html" class="card">
<img src="./img/choppy orc.jpg"></img>
<figcaption style="color:black">choppy orc</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad11 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="9515390763"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./html/cataractae/index.html" class="card">
<img src="./img/cataractae.jpg"></img>
<figcaption style="color:black">cataractae</figcaption>
</a>
<a href="./html/cat house/index.html" class="card">
<img src="./img/cat house.avif"></img>
<figcaption style="color:black">cat house</figcaption>
</a>
<a href="./html/cardinal chains/index.html" class="card">
<img src="./img/cardinal chains.png"></img>
<figcaption style="color:black">cardinal chains</figcaption>
</a>
<a href="./html/bunnies carrot/index.html" class="card">
<img src="./img/bunnies carrot.jpg"></img>
<figcaption style="color:black">bunnies carrot</figcaption>
</a>
<a href="./html/broken tv video puzzle/index.html" class="card">
<img src="./img/broken tv video puzzle.png"></img>
<figcaption style="color:black">broken tv video puzzle</figcaption>
</a>
<a href="./html/aspiring artist/index.html" class="card">
<img src="./img/aspiring artist.webp"></img>
<figcaption style="color:black">aspiring artist</figcaption>
</a>
<a href="./html/arcade wizard/index.html" class="card">
<img src="./img/arcade wizard.png"></img>
<figcaption style="color:black">arcade wizard</figcaption>
</a>
<a href="./html/ant art tycoon/index.html" class="card">
<img src="./img/ant art tycoon.png"></img>
<figcaption style="color:black">ant art tycoon</figcaption>
</a>
<a href="./swf/swords and souls/base.html" class="card">
<img src="./img/swords and souls.avif"></img>
<figcaption style="color:black">swords and souls</figcaption>
</a>
<a href="./swf/sonny2/base.html" class="card">
<img src="./img/sonny2.jpg"></img>
<figcaption style="color:black">sonny2</figcaption>
</a>
<a href="./swf/sonny/base.html" class="card">
<img src="./img/sonny.png"></img>
<figcaption style="color:black">sonny</figcaption>
</a>
<a href="./swf/kingdom rush frontie/base.html" class="card">
<img src="./img/kingdom rush frontie.jpg"></img>
<figcaption style="color:black">kingdom rush frontie</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad12 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="6035364654"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./swf/kingdom rush/base.html" class="card">
<img src="./img/kingdom rush.jpg"></img>
<figcaption style="color:black">kingdom rush</figcaption>
</a>
<a href="./html/worlds within worlds/index.html" class="card">
<img src="./img/worlds within worlds.png"></img>
<figcaption style="color:black">worlds within worlds</figcaption>
</a>
<a href="./html/unloop/index.html" class="card">
<img src="./img/unloop.jpg"></img>
<figcaption style="color:black">unloop</figcaption>
</a>
<a href="./html/trader of stories/index.html" class="card">
<img src="./img/trader of stories.png"></img>
<figcaption style="color:black">trader of stories</figcaption>
</a>
<a href="./html/tower of the scorche/index.html" class="card">
<img src="./img/tower of the scorche.png"></img>
<figcaption style="color:black">tower of the scorche</figcaption>
</a>
<a href="./html/there is no game/index.html" class="card">
<img src="./img/there is no game.jpg"></img>
<figcaption style="color:black">there is no game</figcaption>
</a>
<a href="./html/sum blocks/index.html" class="card">
<img src="./img/sum blocks.png"></img>
<figcaption style="color:black">sum blocks</figcaption>
</a>
<a href="./html/scalak/index.html" class="card">
<img src="./img/scalak.jpg"></img>
<figcaption style="color:black">scalak</figcaption>
</a>
<a href="./html/sabotage/index.html" class="card">
<img src="./img/sabotage.webp"></img>
<figcaption style="color:black">sabotage</figcaption>
</a>
<a href="./html/roots/index.html" class="card">
<img src="./img/roots.jpg"></img>
<figcaption style="color:black">roots</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad13 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="4424530397"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./html/rogue fable/index.html" class="card">
<img src="./img/rogue fable.jpg"></img>
<figcaption style="color:black">rogue fable</figcaption>
</a>
<a href="./html/pixoji/index.html" class="card">
<img src="./img/pixoji.png"></img>
<figcaption style="color:black">pixoji</figcaption>
</a>
<a href="./html/pink/index.html" class="card">
<img src="./img/pink.png"></img>
<figcaption style="color:black">pink</figcaption>
</a>
<a href="./html/knight errant/index.html" class="card">
<img src="./img/knight errant.png"></img>
<figcaption style="color:black">knight errant</figcaption>
</a>
<a href="./html/hexologic/index.html" class="card">
<img src="./img/hexlogic.jpg"></img>
<figcaption style="color:black">hexologic</figcaption>
</a>
<a href="./html/gragyriss/index.html" class="card">
<img src="./img/gragyriss.avif"></img>
<figcaption style="color:black">gragyriss</figcaption>
</a>
<a href="./html/gem twins/index.html" class="card">
<img src="./img/gem twins.png"></img>
<figcaption style="color:black">gem twins</figcaption>
</a>
<a href="./html/dinogen arena/index.html" class="card">
<img src="./img/dinogen arena.webp"></img>
<figcaption style="color:black">dinogen arena</figcaption>
</a>
<a href="./html/cursed travels flame/index.html" class="card">
<img src="./img/cursed travels flame.png"></img>
<figcaption style="color:black">cursed travels flame</figcaption>
</a>
<a href="./html/clickventure/index.html" class="card">
<img src="./img/clickbenture.jpg"></img>
<figcaption style="color:black">clickventure</figcaption>
</a>
<a href="./html/blue/index.html" class="card">
<img src="./img/blue.png"></img>
<figcaption style="color:black">blue</figcaption>
</a>
<a href="./html/beam/index.html" class="card">
<img src="./img/beam.png"></img>
<figcaption style="color:black">beam</figcaption>
</a>
<a href="./html/a grim love tale/index.html" class="card">
<img src="./img/a grim love tale.jpg"></img>
<figcaption style="color:black">a grim love tale</figcaption>
</a>
<a href="./html/a grim chase/index.html" class="card">
<img src="./img/a grim chase.jpg"></img>
<figcaption style="color:black">a grim chase</figcaption>
</a>
<a href="./html/canvas/canvas.html" class="card">
<img src="./img/canvas.png"></img>
<figcaption style="color:black">canvas</figcaption>
</a>
<a href="./html/babel tower/index.html" class="card">
<img src="./img/Babel tower.avif"></img>
<figcaption style="color:black">babel tower</figcaption>
</a>
<a class="card">
<script class="dontsearch" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1609993827735056"
crossorigin="anonymous"></script>
<!-- ad14 -->
<ins class="adsbygoogle"
style="display:inline-block;width:180px;height:270px"
data-ad-client="ca-pub-1609993827735056"
data-ad-slot="2141981984"></ins>
<script class="dontsearch">
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<figcaption>ad</figcaption>
</a>
<a href="./html/tavern master/index.html" class="card">
<img src="./img/tavern master.png"></img>
<figcaption style="color:black">tavern master</figcaption>
</a>
<a href="./html/green/index.html" class="card">
<img src="./img/green.png"></img>
<figcaption style="color:black">green</figcaption>
</a>
<a href="./swf/stealing the diamond/base.html" class="card">
<img src="./img/stealing the diamond.jpg"></img>
<figcaption style="color:black">stealing the diamond</figcaption>
</a>
<a href="./swf/infiltrating the airship/base.html" class="card">
<img src="./img/infiltrating the airship.jpg"></img>
<figcaption style="color:black">infiltrating the airship</figcaption>
</a>
<a href="./swf/fleeing the complex/base.html" class="card">
<img src="./img/fleeing the complex.jpg"></img>
<figcaption style="color:black">fleeing the complex</figcaption>
</a>
<a href="./swf/escaping the prison/base.html" class="card">
<img src="./img/escaping the pirson.jpg"></img>
<figcaption style="color:black">escaping the prison</figcaption>
</a>
<a href="./swf/breaking the bank/base.html" class="card">
<img src="./img/breaking the bank.jpg"></img>
<figcaption style="color:black">breaking the bank</figcaption>
</a>
<a href="./html/tanuki sunset/index.html" class="card">
<img src="./img/tanuki sunset.jpg"></img>
<figcaption style="color:black">tanuki sunset</figcaption>
</a>
<a href="./html/Soccer Random/index.html" class="card">
<img src="./img/Soccor Random.avif"></img>
<figcaption style="color:black">Soccer Random</figcaption>
</a>
<a href="./html/ricochet arrow/index.html" class="card">
<img src="./img/ricochet arrow.jpg"></img>