This repository was archived by the owner on Oct 27, 2024. It is now read-only.
forked from retrobowl-2/retrobowl-2.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadventure-games.html
992 lines (973 loc) · 55.3 KB
/
adventure-games.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Adventure Games | Unblocked Games 76</title>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="2 days">
<meta name="description" content="Play thousands of free online games,
including shooting games, arcade free games,
racing car games, dress up games and many more on Unblocked Games 66">
<meta name="keywords" content="Adventure games pc
Adventure games list
best Adventure games
Adventure games download
Adventure games android
Adventure games offline
best Adventure games android
best Adventure games mobile">
<meta name="creationdatetime" content="2024-02-14T15:52:56.228069Z">
<meta name="content-language" content="en">
<meta name="author" content="66EZ Powered By Unblocked Games 66">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preload" href="fonts/quicksand-v22-latin-regular.html" crossorigin="anonymous" as="font" type="font/woff2">
<link rel="preload" href="fonts/rajdhani-v10-latin-700.html" crossorigin="anonymous" as="font" type="font/woff2">
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/9x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/9.png">
<link rel="stylesheet" href="style.css">
<script>
window.aiptag = window.aiptag || {cmd: []};
aiptag.cmd.display = aiptag.cmd.display || [];
aiptag.cmd.player = aiptag.cmd.player || [];
//CMP tool settings
aiptag.cmp = {
show: true,
position: "centered", //centered, bottom
button: true,
buttonText: "Privacy settings",
buttonPosition: "bottom-left" //bottom-left, bottom-right, bottom-center, top-left, top-right
}
aiptag.cmd.player.push(function() {
aiptag.adplayer = new aipPlayer({
AD_WIDTH: 960,
AD_HEIGHT: 540,
AD_DISPLAY: 'center', //default, fullscreen, fill, center, modal-center
LOADING_TEXT: 'loading advertisement',
PREROLL_ELEM: function(){return document.getElementById('videoad')},
AIP_COMPLETE: function (state) {
/*******************
***** WARNING *****
*******************
Please do not remove the PREROLL_ELEM
from the page, it will be hidden automaticly.
*/
//alert("Video Ad Completed: " + state);
}
});
});
function show_videoad() {
//check if the adslib is loaded correctly or blocked by adblockers etc.
if (typeof aiptag.adplayer !== 'undefined') {
aiptag.cmd.player.push(function() { aiptag.adplayer.startVideoAd(); });
} else {
//Adlib didnt load this could be due to an adblocker, timeout etc.
//Please add your script here that starts the content, this usually is the same script as added in AIP_COMPLETE.
alert("Ad Could not be loaded, load your content here");
aiptag.adplayer.aipConfig.AIP_COMPLETE();
}
}
</script>
<script async src="//api.adinplay.com/libs/aiptag/pub/AGB/classroom247.pages.dev/tag.min.js"></script>
</head>
<body>
<div id="videoad"></div>
<nav id="navbar" class="navbar" role="navigation" aria-label="Main navigation">
<div class="container is-fullhd">
<div class="navbar-brand">
<button class="navbar-burger" aria-label="Open main navigation" aria-expanded="false" data-target="menu"><span aria-hidden="true"></span><span aria-hidden="true"></span><span aria-hidden="true"></span>
</button>
<a class="navbar-item" href="index.html" title="Unblocked Games 66" aria-label="Logo">
<img width="193" height="42" alt="Unblocked Games 66 - Games" src="images/logos/classroom-logo.png">
<img width="193" height="42" alt="Unblocked Games 66 - Games" src="images/logos/classroom-logo.png">
</a>
<div id="brandSearchOverlayButton" class="is-mobile-search-button search-overlay-trigger"><a class="button is-medium is-text is-square navbar-control" role="button" rel="nofollow" aria-label="Goto search page"><span class="icon"><i class="fas fa-search"></i></span></a>
</div>
</div>
<div id="menu" class="navbar-menu">
<div class="navbar-start">
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link">
<a class="button is-text navbar-control" href="action-games.html" title="action">action</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open Adventure menu" aria-expanded="false" data-target="AdventureDropdown">
<a class="button is-text navbar-control" href="adventure-games.html" title="Adventure">Adventure</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open driving menu" aria-expanded="false" data-target="drivingDropdown">
<a class="button is-text navbar-control" href="driving-games.html" title="driving">driving</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open Shooting menu" aria-expanded="false" data-target="ShootingDropdown">
<a class="button is-text navbar-control" href="shooting-games.html" title="Shooting">Shooting</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open Idle menu" aria-expanded="false" data-target="IdleDropdown">
<a class="button is-text navbar-control" href="idle-games.html" title="Idle">Idle</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open motorbike menu" aria-expanded="false" data-target="motorbikeDropdown">
<a class="button is-text navbar-control" href="motorbike-games.html" title="motorbike">motorbike</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open puzzle menu" aria-expanded="false" data-target="puzzleDropdown">
<a class="button is-text navbar-control" href="puzzle-games.html" title="puzzle">puzzle</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open skill menu" aria-expanded="false" data-target="skillDropdown">
<a class="button is-text navbar-control" href="skill-games.html" title="skill">skill</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open sport menu" aria-expanded="false" data-target="sportDropdown">
<a class="button is-text navbar-control" href="sport-games.html" title="sport">sport</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open io menu" aria-expanded="false" data-target="ioDropdown">
<a class="button is-text navbar-control" href="io-games.html" title="io Games">io Games</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<div id="homepage_takeover" style="height:0px"></div>
<section class="section">
<div class="container">
<div class="grid is-4-tablet is-5-desktop is-6-widescreen is-8-fullhd is-9-ultrawide">
<a href="adventure-drivers.html" target="_self" title="Adventure Drivers" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/adventuredrivers/logo.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Adventure Drivers">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Adventure Drivers</span>
</div>
</div>
</a>
<a href="bad-ice-cream-3.html" target="_self" title="Bad Ice Cream 3" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/badicecream3/bad-ice-cream-3.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Bad Ice Cream 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Bad Ice Cream 3</span>
</div>
</div>
</a>
<a href="big-tower-tiny-square.html" target="_self" title="Big Tower Tiny Square" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/bigtowertinysquere/big-tower-tiny-square.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Big Tower Tiny Square">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Big Tower Tiny Square</span>
</div>
</div>
</a>
<a href="bomb-it-7.html" target="_self" title="Bomb It 7" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/bombit7/bomb-it-7.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Bomb It 7">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Bomb It 7</span>
</div>
</div>
</a>
<a href="burrito-bison-launcha-libre.html" target="_self" title="Burito Bison Launcha Libre" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/burritobisonlauchalebre/burrito-bison-launcha-libre.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Burito Bison Launcha Libre">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Burrito Bison Launcha Libre</span>
</div>
</div>
</a>
<a href="bob-the-robber-2.html" target="_self" title="Bob The Robber 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/bobtherobber2/bob-the-robber-2.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Bob The Robber 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Bob The Robber 2</span>
</div>
</div>
</a>
<a href="bob-the-robber-4.html" target="_self" title="Bob The Robber 4" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/bobtherobber4/bob-the-robber-4.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Bob The Robber 4">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Bob The Robber 4</span>
</div>
</div>
</a>
<a href="vex-7.html" target="_self" title="Vex 7" class="tile-card is-big ">
<figure class="image is-3by2">
<img loading="lazy" src="img/vex7/vex7.png" sizes="(min-width: 1744px) 414px, (min-width: 1408px) 330px, (min-width: 1216px) 414px, (min-width: 1024px) 477px, (max-width: 1023px) 414px, 100vw" width="414" height="276" alt="Vex 7">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Vex 7</span>
</div>
</div>
</a>
<a href="vex-4.html" target="_self" title="Vex 4" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/vex4/vex4.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Vex 4">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Vex 4</span>
</div>
</div>
</a>
<a href="vex-6.html" target="_self" title="Vex 6" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/vex6/vex6.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Vex 6">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Vex 6</span>
</div>
</div>
</a>
<a href="vex-5.html" target="_self" title="Vex 5" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/vex5/vex5.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Vex 5">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Vex 5</span>
</div>
</div>
</a>
<a href="vex-3.html" target="_self" title="Vex 3" class="tile-card is-wide ">
<figure class="image is-29by11">
<img loading="lazy" src="img/vex3/vex3.png" sizes="(min-width: 1744px) 406px, (min-width: 1408px) 348px, (max-width: 1407px) 406px, 100vw" width="348" height="132" alt="Vex 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Vex 3</span>
</div>
</div>
</a>
<a href="vex-8.html" target="_self" title="Vex 3" class="tile-card is-wide ">
<figure class="image is-29by11">
<img loading="lazy" src="img/vex8/vex8unblocked.jpg" sizes="(min-width: 1744px) 406px, (min-width: 1408px) 348px, (max-width: 1407px) 406px, 100vw" width="348" height="132" alt="Vex 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Vex 8</span>
</div>
</div>
</a>
<a href="stealing-the-diamond.html" target="_self" title="Stealing The Diamond" class="tile-card not-mobile">
<figure class="image is-16by9">
<img loading="lazy" src="img/stealingthediamond/stealing-the-diamond.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Stealing The Diamond">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>Stealing The Diamond</span>
</div>
</div>
</a>
<a href="fireboy-and-watergirl-5.html" target="_self" title="Fireboy & Watergirl 5" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fireboyandwatergirl5/fireboy-and-watergirl-5.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Fireboy & Watergirl 5">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fireboy & Watergirl 5</span>
</div>
</div>
</a>
<a href="fireboy-and-watergirl-4.html" target="_self" title="Fireboy & Watergirl 4" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fireboyandwatergirl4/fireboy-and-watergirl-4.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Fireboy & Watergirl 4">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fireboy & Watergirl 4</span>
</div>
</div>
</a>
<a href="fireboy-and-watergirl-3.html" target="_self" title="Fireboy & Watergirl 3" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fireboyandwatergirl3/fireboy-and-watergirl-3.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Fireboy & Watergirl 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fireboy & Watergirl 3</span>
</div>
</div>
</a>
<a href="fireboy-and-watergirl-2.html" target="_self" title="Fireboy & Watergirl 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fireboyandwatergirl2/fireboy-and-watergirl-2.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Fireboy & Watergirl 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fireboy & Watergirl 2</span>
</div>
</div>
</a>
<a href="fireboy-and-watergirl.html" target="_self" title="Fireboy & Watergirl" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fireboyandwatergirl/fireboy-and-watergirl.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Fireboy & Watergirl">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fireboy & Watergirl</span>
</div>
</div>
</a>
<a href="fleeing-the-complex.html" target="_self" title="Fleeing The Complex" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fleeingthecomplex/fleeing-the-complex.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Fleeing The Complex">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fleeing The Complex</span>
</div>
</div>
</a>
<a href="breaking-the-bank.html" target="_self" title="Breaking The Bank" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/breakingthebank/breaking-the-bank.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Breaking The Bank">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Breaking The Bank</span>
</div>
</div>
</a>
<a href="escaping-the-prison.html" target="_self" title="Escaping The Prison" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/escapingtheprison/escaping-the-prison.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Escaping The Prison">
</figure>
<div class="content">
<div class="name"><span>Escaping The Prison</span>
</div>
</div>
</a>
<a href="red-ball-4.html" target="_self" title="Red Ball 4" class="tile-card">
<figure class="image is-3by2">
<img loading="lazy" src="img/redball4/red-ball-4.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (min-width: 1216px) 192px, (min-width: 1024px) 240px, (max-width: 1023px) 192px, 100vw" width="160" height="90" alt="Red Ball 4">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Red Ball 4</span>
</div>
</div>
</a>
<a href="fireboy-and-watergirl-6.html" target="_self" title="Fireboy & Watergirl 6" class="tile-card is-big ">
<figure class="image is-3by2">
<img loading="lazy" src="img/fireboyandwatergirl6/fireboy-and-watergirl-6.png" sizes="414px" width="414" height="276" alt="Fireboy & Watergirl 6">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fireboy & Watergirl 6</span>
</div>
</div>
</a>
<a href="apple-shooter.html" target="_self" title="Apple Shooter" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/appleshooter/apple-shooter.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Apple Shooter">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Apple Shooter</span>
</div>
</div>
</a>
<a href="awesome-tanks-2.html" target="_self" title="Awesome Tank 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/awesometanks2/awesome-tanks.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Awesome Tank 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Awesome Tank 2</span>
</div>
</div>
</a>
<a href="burnin-rubber-5-xs.html" target="_self" title="Burnin Rubber 5 Xs" class="tile-card">
<figure class="image is-16by9">
<img loading="lazy" src="img/burninrubber5xs/burnin-rubber-5-xs.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Burnin Rubber 5 Xs">
</figure>
<div class="content">
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>Burnin Rubber 5 Xs</span>
</div>
</div>
</a>
<a href="g-switch.html" target="_self" title="G-Switch" class="tile-card">
<figure class="image is-16by9">
<img loading="lazy" src="img/g-switch3/g-switch.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="G-Switch">
</figure>
<div class="content">
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>G-Switch</span>
</div>
</div>
</a>
<a href="g-switch-2.html" target="_self" title="G-Switch 2" class="tile-card not-mobile">
<figure class="image is-16by9">
<img loading="lazy" src="img/g-switch3/g-switch-2.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="G-Switch 2">
</figure>
<div class="content">
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>G-Switch 2</span>
</div>
</div>
</a>
<a href="g-switch-3.html" target="_self" title="G-Switch 3" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/g-switch3/logo.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="G-Switch 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>G-Switch 3</span>
</div>
</div>
</a>
<a href="retro-bowl.html" target="_self" title="Retro Bowl" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/retrobowl/retro-bowl.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Retro Bowl">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Retro Bowl</span>
</div>
</div>
</a>
<a href="road-fury.html" target="_self" title="Road Fury" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/roadfury/road-fury-logo.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Road Fury">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Road Fury</span>
</div>
</div>
</a>
<a href="earn-to-die.html" target="_self" title="Earn To Die" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/earntodie/earn-to-die.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Earn To Die">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Earn To Die</span>
</div>
</div>
</a>
<a href="impossible-monster-truck.html" target="_self" title="Impossible Monster Truck" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/impossiblemontertruck/impossible-monster-truck.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Impossible Monster Truck">
</figure>
<div class="content">
<div class="name"><span>Impossible Monster Truck</span>
</div>
</div>
</a>
<a href="monster-truck-destroyer.html" target="_self" title="Monster Truck Destroyer" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/montertruckdestroyer/monster-truck-destroyer.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Monster Truck Destroyer">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Monster Truck Destroyer</span>
</div>
</div>
</a>
<a href="gun-mayhem.html" target="_self" title="Gun Mayhem" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/gunmayhem/gun-mayhem.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Gun Mayhem">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Gun Mayhem</span>
</div>
</div>
</a>
<a href="gun-mayhem-2.html" target="_self" title="Gun Mayhem 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/gunmayhem/gun-mayhem-2.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Gun Mayhem 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Gun Mayhem 2</span>
</div>
</div>
</a>
<a href="gun-mayhem-3.html" target="_self" title="Gun Mayhem 3" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/gunmayhem/gun-mayhem-3.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Gun Mayhem 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Gun Mayhem 3</span>
</div>
</div>
</a>
<a href="monster-truck-vs-zombie.html" target="_self" title="Monster Truck vs Zombie" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/montertruckvszombie/monster-truck-vs-zombie.png" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Monster Truck vs Zombie">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Monster Truck vs Zombie</span>
</div>
</div>
</a>
<a href="amidst-the-clouds.html" target="_self" title="Amidst The Cloud" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/amidsttheclouds.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Amidst The Cloud">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Amidst The Cloud</span>
</div>
</div>
</a>
<a href="craftmine.html" target="_self" title="Craftmine" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/craftmine.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Craftmine">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Craftmine</span>
</div>
</div>
</a>
<a href="duke-dashington-remastered.html" target="_self" title="Duke Dashington Remasterd" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/dukedashingtonremastered.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Duke Dashington Remasterd">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Duke Dashington Remasterd</span>
</div>
</div>
</a>
<a href="grindcraft.html" target="_self" title="GrindCraft" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/grindcraft.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="GrindCraft">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>GrindCraft</span>
</div>
</div>
</a>
<a href="rabbit-samurai-2.html" target="_self" title="Rabbit Samurai 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/rabbitsamurai2.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Rabbit Samurai 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Rabbit Samurai 2</span>
</div>
</div>
</a>
<a href="minecraft-classic.html" target="_self" title="Minecraft Classic" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/minecraftclassic.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Minecraft Classic">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Minecraft Classic</span>
</div>
</div>
</a>
<a href="skyblock.html" target="_self" title="Skylock" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/skyblock.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Skylock">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Skylock</span>
</div>
</div>
</a>
<a href="just-fall-lol.html" target="_self" title="Just Fall LoL" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/justfalllol.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Just Fall LoL">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Just Fall LoL</span>
</div>
</div>
</a>
<a href="mario.html" target="_self" title="Mario" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/mario76ez.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Mario">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Mario</span>
</div>
</div>
</a>
<a href="supper-mario-64.html" target="_self" title="Super Mario 64" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/supermario64.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Super Mario 64">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Super Mario 64</span>
</div>
</div>
</a>
<a href="learn-to-fly.html" target="_self" title="Learn To Fly" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/learntofly.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Learn To Fly">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Learn To Fly</span>
</div>
</div>
</a>
<a href="sonic.html" target="_self" title="Sonic" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/sonic.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Sonic">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Sonic</span>
</div>
</div>
</a>
<a href="temple-run-2.html" target="_self" title="Temple Run 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="images/templerun2.webp" sizes="(min-width: 1744px) 192px, (min-width: 1408px) 160px, (max-width: 1407px) 192px, 100vw" width="160" height="90" alt="Temple Run 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Temple Run 2</span>
</div>
</div>
</a>
</div>
</div>
</section>
<section class="section has-slot is-hidden is-block-ultrawide">
<div class="slot-container is-billboard">
<div>
<div id="bgames-game-otf-top">
<div id='classroom247-pages-dev_970x250'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('classroom247-pages-dev_970x250'); });
</script>
</div>
</div>
</div>
</div>
</section>
<section class="section is-hero tag-grid">
<div class="container">
<div class="tags-title">
<a href="adventure-games.html#" title="Popular tags">
Popular <span>Categories</span>
</a>
</div>
<div class="grid is-1 is-2-tablet is-4-widescreen">
<a href="3d-games.html" class="tag-card" title="3D Games">
<span>3D Games</span>
<img loading="lazy" src="images/logos/3d-64.png" width="128" height="72" alt="3D Games">
</a>
<a href="action-games.html" class="tag-card" title="Action">
<span>Action</span>
<img loading="lazy" src="images/logos/action64.png" width="128" height="72" alt="Action Games">
</a>
<a href="adventure-games.html" class="tag-card" title="Adventure">
<span>Adventure</span>
<img loading="lazy" src="images/logos/adventure64.png" width="128" height="72" alt="Adventure Games">
</a>
<a href="car-games.html" class="tag-card" title="Car">
<span>Car</span>
<img loading="lazy" src="images/logos/car-64.png" width="128" height="72" alt="Car Games">
</a>
<a href="drift-games.html" class="tag-card" title="Drift">
<span>Drift</span>
<img loading="lazy" src="images/logos/driving-64.png" width="128" height="72" alt="Drift Games">
</a>
<a href="idle-games.html" class="tag-card" title="Idle">
<span>Idle</span>
<img loading="lazy" src="images/logos/idle96.png" width="128" height="72" alt="Idle Games">
</a>
<a href="motorbike-games.html" class="tag-card" title="Motorbike">
<span>Motorbike</span>
<img loading="lazy" src="images/logos/motorbike-66.png" width="128" height="72" alt="Motorbike Games">
</a>
<a href="skill-games.html" class="tag-card" title="Skill">
<span>Skill</span>
<img loading="lazy" src="images/logos/skills.png" width="128" height="72" alt="Skill Games">
</a>
<a href="shooting-games.html" class="tag-card" title="Shooting">
<span>Shooting </span>
<img loading="lazy" src="images/logos/shooting-64.png" width="128" height="72" alt="Shooting Games">
</a>
<a href="parking-games.html" class="tag-card" title="Parking">
<span>Parking</span>
<img loading="lazy" src="images/logos/parking.png" width="128" height="72" alt="Parking Games">
</a>
<a href="truck-games.html" class="tag-card" title="Truck">
<span>Truck</span>
<img loading="lazy" src="images/logos/truck.png" width="128" height="72" alt="Truck Games">
</a>
<a href="subway-surfers-games.html" class="tag-card" title="Subway Surfers">
<span>Subway Surfers</span>
<img loading="lazy" src="images/logos/subwaysurfers128.png" width="128" height="72" alt="Subway Surfers Games">
</a>
<a href="slope-games.html" class="tag-card" title="Slope">
<span>Slope Unblocked</span>
<img loading="lazy" src="images/logos/logo.png" width="128" height="72" alt="Slope Games">
</a>
<a href="snail-bob-8.html" class="tag-card" title="Snail Bob">
<span>Snail Bob</span>
<img loading="lazy" src="images/logos/snail-bob-8.png" width="128" height="72" alt="Snail Bob Games">
</a>
<a href="vex-7.html" class="tag-card" title="Vex">
<span>Vex Unblocked</span>
<img loading="lazy" src="images/logos/vex7.png" width="128" height="72" alt="Vex Games">
</a>
<a href="wheely-games.html" class="tag-card" title="Wheely">
<span>Wheely Unblocked</span>
<img loading="lazy" src="images/logos/wheely-8.png" width="128" height="72" alt="Wheely Games">
</a>
</div>
</div>
</section>
<section class="section has-slot is-hidden is-block-ultrawide">
<div class="slot-container is-billboard">
<div>
<div id="bgames-game-btf-bottom">
<div id='classroom247-pages-dev_970x250_2'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('classroom247-pages-dev_970x250_2'); });
</script>
</div>
</div>
</div>
</div>
</section>
<footer class="section footer">
<picture>
<source type="image/webp" media="(max-width: 1023px)" src="images/footer/footer-desktop.png">
<source type="image/webp" media="(min-width: 1024px)" src="images/footer/footer-desktop.png">
<img loading="lazy" class="footer-asset" src="images/footer/footer-desktop.png" width="800" height="315" alt="Unblocked Games 66">
</picture>
<div class="container">
<div class="footer-menu">
<div class="footer-links">
<div>
<p>for users</p>
<ul>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a role="button" class="optanon-toggle-display has-hover">
Privacy Settings
</a>
</li>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a href="https://retrobowl-2.github.io/cookie-statement/index.html" target="_self" title="Cookie Statement" class="has-hover">
Cookie Policy
</a>
</li>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a href="https://retrobowl-2.github.io/privacy-statement/index.html" target="_self" title="Privacy Statement" class="has-hover">
Privacy policy
</a>
</li>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a href="https://retrobowl-2.github.io/terms-of-use/index.html" target="_self" title="Terms of Use" class="has-hover">
Terms
</a>
</li>
</ul>
</div>
<div>
<p>corporate</p>
<ul>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a href="about-us/index.html" target="_self" title="About Us" class="has-hover">
About Us
</a>
</li>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a href="https://retrobowl-2.github.io/contact/index.html" target="_self" title="Contact" class="has-hover">
Contact
</a>
</li>
<li><span class="icon"><i class="fas fa-caret-right"></i></span><a href="https://retrobowl-2.github.io/advertise/index.html" target="_self" title="Advertising" class="has-hover">
Advertising
</a>
</li>
</ul>
</div>
<div class="footer-copyright">
<a href="index.html"><img loading="lazy" src="images/logos/classroom-logo.png" width="130" height="80" alt="Unblocked Games 66"></a>
<span>© Copyright 2022 -2024 </span>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
var SITE_OPTIONS = {
id: 501,
title: "retrobowl-2.github.io",
language: "en",
country: "US",
root: "/",
url: "https://www.retrobowl-2.github.io/",
domain: "retrobowl-2.github.io",
util: "home-page",
searchPath: "https://www.retrobowl-2.github.io/search/",
popularityUrl: "https://popularity.retrobowl-2.github.io",
staticUrl: "https://assets.retrobowl-2.github.io",
searchUrl: "https://search.retrobowl-2.github.io",
privacyStatementUrl: "https://www.retrobowl-2.github.io/privacy-statement/",
termsOfUseUrl: "https://www.retrobowl-2.github.io/terms-of-use/",
cookieStatementUrl: "https://www.retrobowl-2.github.io/cookie-statement/",
thirdPartiesUrl: "https://www.retrobowl-2.github.io/third-parties/",
kidsPrivacyStatementUrl: "https://kids.retrobowl-2.github.io/privacy-policy/",
buildTest: "false",
cookieProEnabled: true,
cookieProId: "",
raygunAPIKey: ""
};
</script>
<script type="text/javascript">
var TARGETING = {
id: "501",
title: "retrobowl-2.github.io",
language: "en",
country: "US",
domain: "retrobowl-2.github.io",
util: "home-page",
targeting: "homepage"
};
</script>
<script src="main28c8.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CT0VR0DC9R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CT0VR0DC9R');
</script>
</body>
</html>