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 path3d-moto-simulator-2.html
1473 lines (1454 loc) · 96.2 KB
/
3d-moto-simulator-2.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="zxx">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>3D Moto Simulator 2 Unblocked | Play on retrobowl-2.github.io</title>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="2 days">
<meta name="description" content="Play 3D Moto Simulator 2 game on retrobowl-2.github.io.
Play 3D Moto Simulator 2, 3D Moto Simulator 2 Unblocked on retrobowl-2.github.io.
✓ Free online game
✓ Fullscreen mode
✓ No registration required
✓ No Download. Have fun playing!">
<meta name="keywords" content="3d moto simulator 2
3d moto simulator 2 download
3d moto simulator crazy games
3d moto simulator 2 poki
3d moto simulator unblocked
3d moto simulator 2 unblocked
3d moto game
moto simulator online">
<meta name="creationdatetime" content="2024-02-14T15:52:56.228069Z">
<meta name="content-language" content="en">
<meta name="author" content="retrobowl-2.github.io">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="320">
<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">
</script>
<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">
</script>
<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="retrobowl-2.github.io" aria-label="Logo">
<img width="193" height="42" alt="retrobowl-2.github.io - Games" src="images/logos/classroom-logo.png">
<img width="193" height="42" alt="retrobowl-2.github.io - 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 id="menu" class="navbar-menu">
<div class="navbar-start">
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link">
<div class="navbar-link" aria-label="Open action menu" aria-expanded="false" data-target="ActionDropdown">
<a class="button is-text navbar-control" href="action-games.html" title="action">action</a>
</div>
</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 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 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 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 class="navbar-end">
<div id="userDropdown" class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="User menu" aria-expanded="false" data-target="userDropdown">
<div id="navbarBadge" class="navbar-badge is-hidden">0</div>
<a id="userMenuDropdown" class="button is-text is-square navbar-control" role="button" rel="nofollow" aria-label="Open user menu">
<span class="icon is-medium">
<i class="fas fa-user-circle"></i>
</span>
</a>
</div>
<div id="userDropdown" class="navbar-dropdown is-boxed is-user-dropdown">
<div>
<div class="container is-max-fullhd">
<div class="columns">
<div class="column">
<div class="title">
Last played <span>games</span>
</div>
<div id="lastPlayedGames" class="grid"></div>
</div>
<div class="column">
<div class="title">
Favourite <span>games</span>
</div>
<div id="favoriteGames" class="grid"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="search" class="navbar-item has-dropdown is-search">
<div class="navbar-link is-arrowless" aria-label="Search menu" aria-expanded="false">
<input class="input navbar-control" type="search" placeholder="Search" autocomplete="false" aria-labelledBy="searchButton">
<button id="searchButton" class="button is-text is-square navbar-control" type="submit" aria-label="Submit search query">
<span class="icon">
<i class="fas fa-search"></i>
</span>
</button>
</div>
<div class="navbar-dropdown is-boxed is-right search-results-container">
<div class="title">Categories</div>
<ul class="search-tags-results"></ul>
<div class="title">Games</div>
<ul class="search-games-results"></ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<section class="section is-hidden-mobile game-frame-section" id="gameFrameSection">
<div class="game-container">
<div>
<div class="game-frame-container">
<div class="game" id="game">
<div class="splash-screen is-active" id="splashScreen">
<img loading="lazy" class="splash-background" src="img/3dmotosimulator2/logo.png" width="672" height="378" alt="3D Moto Simulator 2">
<div class="splash-content">
<div class="splash-thumbnail">
<figure class="image is-square">
<img loading="lazy" src="img/3dmotosimulator2/logo.png" width="146" height="146" alt="3D Moto Simulator 2">
</figure>
</div>
<button class="button is-play start-game" onclick="show_videoad(); loadMainGame()" aria-label="Start the game">
<span class="icon is-small">
<i class="far fa-play"></i>
</span>
<span>PLAY NOW</span>
</button>
</div>
</div>
</div>
<div class="game-tools">
<div class="game-thumb">
<figure class="image is-square">
<img loading="lazy" src="img/3dmotosimulator2/logo.png" width="46" height="46" alt="3D Moto Simulator 2">
</figure>
</div>
<div class="title is-4">3D Moto Simulator 2</div>
<div class="buttons">
<button class="button is-thumbs-up is-square is-medium" aria-label="Up vote the game">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" enable-background="new 0 0 50 50" version="1.1" viewBox="0 0 50 50" xml:space="preserve">
<path class="st0" d="m42.2 30.9c0.3 1.8-0.2 3.7-1.4 5 0.1 4-2.3 6.7-6.7 6.7h-3.1c-5.7 0-10.8-3-13.2-3v0.7c0 1.3-1.1 2.4-2.4 2.4h-7.1c-1.3-0.1-2.3-1.2-2.3-2.5v-19c0-1.3 1.1-2.4 2.4-2.4h7.1c0.8 0 1.5 0.4 2 1 0.2 0 0.4-0.1 0.6-0.2 1.6-0.9 4.3-5.1 6-6.9 0.7-0.7 1-2 1.2-3.3 0.4-2.2 1.3-5 3.5-5 4.4 0 6.2 2.6 6.2 6.9 0 2.3-0.9 3.9-1.5 5.2h5.2c3 0 5.4 2.6 5.4 5.4 0 1.5-0.4 2.8-1.1 3.7 0.3 1.8 0.1 3.9-0.8 5.3zm-26.7 9.3v-19h-7.2v19h7.2zm-3.6-1.8c-1 0-1.8-0.8-1.8-1.8s0.8-1.8 1.8-1.8 1.8 0.8 1.8 1.8-0.8 1.8-1.8 1.8zm29.8-16.4c0-1.5-1.3-3-3-3h-8.3c0-3 2.3-4.4 2.3-7.6 0-1.9 0-4.5-3.8-4.5-1.5 1.5-0.8 5.3-3 7.6-2.7 2.5-5.2 7.5-8 7.5v15.1c3.2 0 7.8 3 13.2 3h3c2.8 0 4.9-1.4 4.3-5.3 1.2-0.7 2.1-2.9 1.1-4.6 1.6-0.8 1.6-4.4 0.4-5.3 1.2-0.1 1.8-1.3 1.8-2.9z"></path>
</svg>
</span>
</button>
<button class="button is-thumbs-down is-square is-medium" aria-label="Down vote the game">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" enable-background="new 0 0 50 50" version="1.1" viewBox="0 0 50 50" xml:space="preserve">
<path class="st0" d="m44 26.1c0 2.8-2.4 5.4-5.4 5.4h-5.2c0.6 1.3 1.5 2.9 1.5 5.2 0 4.3-1.7 6.9-6.2 6.9-2.2 0-3.1-2.8-3.5-5-0.3-1.3-0.5-2.5-1.2-3.3-1.8-1.8-4.4-6-6-6.9-0.1 0-0.1 0-0.2-0.1v0.9c0 1.3-1.1 2.4-2.4 2.4h-7.1c-1.3 0.1-2.3-1-2.3-2.3v-19c0-1.3 1-2.4 2.3-2.4h7.1c0.6 0 1.2 0.2 1.6 0.6h0.8c2.7 0 7.5-3 13.2-3h3.1c4.4 0 6.9 2.7 6.7 6.7 1.1 1.3 1.7 3.2 1.4 5 0.9 1.5 1.1 3.5 0.7 5.2 0.7 0.9 1.1 2.2 1.1 3.7zm-28.5-15.8h-7.2v19h7.1v-19zm-3.6 17.2c-1 0-1.8-0.8-1.8-1.8s0.8-1.8 1.8-1.8 1.8 0.8 1.8 1.8-0.8 1.8-1.8 1.8zm29.8-1.4c0-1.5-0.6-2.7-1.8-3 1.2-0.9 1.2-4.4-0.4-5.3 1-1.7 0.1-4-1.1-4.6 0.6-3.9-1.4-5.3-4.3-5.3h-3c-5.3 0-10.3 3-12.9 3h-0.3v15.1h0.3c2.3 0 5.4 5.4 7.6 7.6 2.3 2.3 1.5 6.1 3 7.6 3.8 0 3.8-2.6 3.8-4.5 0-3.1-2.3-4.5-2.3-7.6h8.3c1.7 0 3.1-1.5 3.1-3z"></path>
</svg>
</span>
</button>
<button class="button is-share is-square is-medium" id="shareButton" aria-label="Share the game">
<span class="icon is-medium">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" enable-background="new 0 0 50 50" version="1.1" viewBox="0 0 50 50" xml:space="preserve">
<path class="st0" d="m28 31.6-8.3-3.6c0.4-1.6 0.2-3.3-0.4-4.8-0.8-2-2.4-3.6-4.4-4.5s-4.2-0.9-6.3-0.1c-2 0.8-3.6 2.4-4.5 4.4s-0.9 4.2-0.1 6.3c0.8 2 2.4 3.6 4.4 4.5 1 0.4 2.1 0.7 3.2 0.7 1 0 2.1-0.2 3.1-0.6 1.6-0.6 2.9-1.7 3.8-3.1l8.3 3.5c0.2 0.1 0.4 0.1 0.6 0.1 0.6 0 1.1-0.3 1.4-0.9 0.3-0.7-0.1-1.6-0.8-1.9zm-14.4-0.5c-1.3 0.5-2.7 0.5-4 0s-2.3-1.6-2.8-2.8c-0.5-1.3-0.5-2.7 0-4 0.6-1.3 1.6-2.3 2.9-2.9 0.6-0.3 1.3-0.4 2-0.4s1.4 0.1 2 0.4c1.3 0.6 2.3 1.6 2.8 2.9s0.5 2.7 0 4c-0.6 1.3-1.6 2.3-2.9 2.8z"></path>
<path class="st0" d="m23.7 22.2c0.3 0 0.5-0.1 0.8-0.2l7.7-4.7c1.6 1.7 3.8 2.7 6.1 2.7 1.5 0 3-0.4 4.3-1.2 3.9-2.4 5.1-7.4 2.7-11.3s-7.5-5.1-11.3-2.7c-3.4 2.1-4.7 6.3-3.4 9.9l-7.6 4.8c-0.7 0.4-0.9 1.4-0.5 2.1 0.2 0.4 0.7 0.6 1.2 0.6zm9.5-11.6c0.3-1.4 1.2-2.5 2.3-3.2 0.8-0.5 1.8-0.8 2.7-0.8 1.8 0 3.5 0.9 4.4 2.5 1.5 2.4 0.7 5.7-1.7 7.2s-5.7 0.7-7.2-1.7c-0.6-1.3-0.8-2.7-0.5-4z"></path>
<path class="st0" d="m40.2 29.7c-2.1-0.5-4.3-0.2-6.2 1-1.9 1.1-3.2 3-3.7 5.1s-0.2 4.3 1 6.2c1.5 2.5 4.2 3.9 7 3.9 1.5 0 3-0.4 4.3-1.2 3.9-2.4 5.1-7.4 2.7-11.3-1.2-1.9-3-3.2-5.1-3.7zm0.8 12.5c-1.2 0.7-2.6 1-3.9 0.6-1.4-0.3-2.5-1.2-3.2-2.3s-1-2.6-0.6-3.9 1.2-2.5 2.3-3.2c0.8-0.5 1.8-0.8 2.7-0.8 1.8 0 3.5 0.9 4.4 2.5 1.5 2.3 0.7 5.5-1.7 7.1z"></path>
</svg>
</span>
</button>
<button class="button is-theater is-square is-medium is-hidden-touch" id="theaterButton" aria-label="Toggle full screen mode">
<span class="icon is-medium expand">
<svg class="svg-inline--fa fa-expand-wide" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="expand-wide" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M32 64C14.3 64 0 78.3 0 96v96c0 17.7 14.3 32 32 32s32-14.3 32-32V128h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V320zM384 64c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32H384zM512 320c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V320z"></path></svg>
<i class="fas fa-expand-wide"></i>
</span>
<span class="icon is-medium shrink">
<i class="fas fa-compress-wide"></i>
</span>
</button>
<div class="share-container" id="shareContainer">
<div class="addthis_inline_share_toolbox_wpda"></div>
<span class="icon">
<i class="fas fa-circle-notch fa-spin"></i>
</span>
</div>
</div>
</div>
</div>
<div class="game-suggestions-container">
<div class="grid is-1">
<a href="drive-mad.html" target="_self" title="Drive Mad" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/drivemad/drive-mad-logo.webp" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt=" Drive Mad">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span> Drive Mad</span>
</div>
</div>
</a>
<a href="blumgi-rocket.html" target="_self" title="Blumgir Rocket" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/blumgirocket/blumgi-rocket-logo.webp" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="Blumgir Rocket">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Blumgir Rocket</span>
</div>
</div>
</a>
<a href="eggy-car.html" target="_self" title="Eggy Car" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/eggycar/eggy-car-logo.webp" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="Eggy Car">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Eggy Car</span>
</div>
</div>
</a>
<a href="jelly-truck.html" target="_self" title="Jelly Truck" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/jellytruck/jelly-truck-logo.webp" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="Jelly Truck">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Jelly Truck</span>
</div>
</div>
</a>
</div>
<button class="button" id="moreRelatedButton" aria-label="Go to more related games">
<span>Related games</span>
</button>
</div>
<div class="slot-container is-billboard game-slot-wide-container">
<div>
<div id="bgames-game-atf-top">
</div>
</div>
</div>
</div>
<div class="slot-container is-skyscraper game-slot-tall-container is-hidden-touch">
<div>
<div id="bgames-game-atf-right">
<div id='classroom247-pages-dev_300x600_2'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('classroom247-pages-dev_300x600_2'); });
</script>
</div>
</div>
</div>
</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 meta-section">
<div class="container">
<div class="columns is-multiline">
<div class="column is-full-tablet is-two-thirds-desktop">
<div class="meta-content-container">
<div class="meta-top-container">
<nav class="breadcrumb game-page" aria-label="breadcrumbs">
<ul>
<li>
<a href="index.html" target="_self" title="retrobowl-2.github.io" class="has-hover">
<span class="icon">
<svg class="svg-inline--fa fa-house" aria-hidden="true" focusable="false" data-prefix="far" data-icon="house" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg=""><path fill="currentColor" d="M567.5 229.7C577.6 238.3 578.9 253.4 570.3 263.5C561.7 273.6 546.6 274.9 536.5 266.3L512 245.5V432C512 476.2 476.2 512 432 512H144C99.82 512 64 476.2 64 432V245.5L39.53 266.3C29.42 274.9 14.28 273.6 5.7 263.5C-2.875 253.4-1.634 238.3 8.473 229.7L272.5 5.7C281.4-1.9 294.6-1.9 303.5 5.7L567.5 229.7zM144 464H192V312C192 289.9 209.9 272 232 272H344C366.1 272 384 289.9 384 312V464H432C449.7 464 464 449.7 464 432V204.8L288 55.47L112 204.8V432C112 449.7 126.3 464 144 464V464zM240 464H336V320H240V464z"></path>
</svg>
<i class="far fa-home"></i>
</span>
</a>
</li>
<li class="">
<span class="icon">
<i class="fas fa-chevron-right"></i>
</span>
<a href="driving-games.html" target="_self" title="
Adventure
" class="has-hover"> Racing</a>
</li>
<li class="">
<span class="icon">
<i class="fas fa-chevron-right"></i>
</span>
<a href="3d-games.html" target="_self" title="
3D
" class="has-hover">3D</a>
</li>
<li class="is-active">
<span class="icon">
<i class="fas fa-chevron-right"></i>
</span>
<label>
3D Moto Simulator 2
</label>
</li>
</ul>
</nav>
<a class="button walk-through-button" role="button" aria-label="Play a walk through video">
<span class="icon">
<i class="fas fa-play-circle"></i>
</span>
<span>Walkthrough</span>
</a>
</div>
<div class="meta-bottom-container">
<div class="thumbnail-container is-hidden-tablet ">
<figure class="image is-3by2">
<img loading="lazy" src="img/3dmotosimulator2/logo.png" width="672" height="378" alt=" 3D Moto Simulator 2">
</figure>
<button class="button is-square is-medium is-favorite" aria-label="Add the game to your favorites">
<span class="icon is-medium">
<i class="far fa-heart outline" aria-hidden="true"></i>
<i class="fas fa-heart solid has-text-danger" aria-hidden="true"></i>
</span>
</button>
<button class="button is-play is-fullwidth is-loading start-game" aria-label="Start the game">
<span class="icon">
<i class="far fa-play"></i>
</span>
<span>Play now</span>
</button>
</div>
<div class="title-bar">
<h1 class="title is-3">3D Moto Simulator 2</h1>
<button class="button is-square is-favorite is-hidden-mobile" aria-label="Add the game to your favorites">
<span class="icon">
<i class="far fa-heart outline" aria-hidden="true"></i>
<i class="fas fa-heart solid has-text-danger" aria-hidden="true"></i>
</span>
</button>
</div>
<div class="content">
<h2>Description</h2>
<p>In the racing game 3D Moto Simulator 2, you play as a motorbike driver. <br>
You may control a street racer, motocross bike, or police motorbike in 3D Moto Simulator 2.<br>
If you want to feel like you're riding a fast motorcycle, use the first-person perspective. <br>
Bunny-hop and pop a wheelie to wow the other riders! <br>
There are brand-new, gleaming motorcycles available, such as cross bikes, trials bikes, or even a formidable police bike! <br>
Choose from three stunning settings: a metropolis in a rocky desert, a vast metropolitan complex,
and a desolate wasteland. <br>Play the game with your pals in groups!</p>
<h2>How to play 3D Moto Simulator 2?</h2>
<p></p>
<p></p>
<p></p>
<p></p>
<h2>Game developer</h2>
<p></p>
<h2>Release date</h2>
<p></p>
<a class="button walk-through-button is-hidden-tablet" role="button" aria-label="Play a walk through video">
<span class="icon">
<i class="fas fa-play-circle"></i>
</span>
<span>Walkthrough</span>
</a>
</div>
<div class="publisher-disclaimer-notification"></div>
</div>
<div class="meta-controls-container is-hidden-touch">
<div>
<div class="cluster control tooltip" data-hover="true">
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-up"></i>
</span></kbd>
<br>
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-left"></i>
</span>
</kbd>
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-down"></i>
</span>
</kbd>
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-right"></i>
</span>
</kbd>
<span class="tooltip-wrapper">
<em>Use arrow keys to play</em>
</span>
</div>
<div class="game-control-mouse control tooltip" data-hover="true" data-casual-attached="attached">
<div class="ping"></div>
<span class="tooltip-wrapper" style="top: -999px; left: -999px;">
<em>Use your mouse to play</em>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="column">
<div class="grid is-1">
<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">
</a>
<a href="idle-games.html" class="tag-card" title="Idle">
<span>Idle</span>
<img loading="lazy" src="images/logos/idle64.png" width="128" height="72" alt="Idle">
</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">
</a>
<a href="driving-games.html" class="tag-card" title="racing">
<span>racing</span>
<img loading="lazy" src="images/logos/off-road-car-64.png" width="128" height="72" alt="racing">
</a>
<a href="sport-games.html" class="tag-card" title="sport">
<span>sport</span>
<img loading="lazy" src="images/logos/sports-64.png" width="128" height="72" alt="sport">
</a>
<a href="stickman-games.html" class="tag-card" title="stickman">
<span>stickman</span>
<img loading="lazy" src="images/logos/archeologist.png" width="128" height="72" alt="stickman">
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="moreRelatedGames">
<div class="container">
<div class="columns is-multiline">
<div class="column">
<div class="grid is-hidden-desktop"></div>
<div class="grid is-4-tablet is-4-desktop is-4-widescreen is-4-fullhd is-5-ultrawide">
<a href="adventure-drivers.html" target="_self" title="Adventure Driver" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/adventuredrivers/logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Adventure Driver">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Adventure Driver</span>
</div>
</div>
</a>
<a href="car-rush.html" target="_self" title="Car Rush" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/carrush/car-rush.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Car Rush">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Car Rush</span>
</div>
</div>
</a>
<a href="car-simulator-arena.html" target="_self" title="Car Simulator Arena" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/carsimulatorarena/car-simulator-arena.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Car Simulator Arena">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Car Simulator Arena</span>
</div>
</div>
</a>
<a href="cartoon-mini-racing.html" target="_self" title="Cartoon Mini Racing" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/cartoonminiracing/cartoon-mini-racing.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Cartoon Mini Racing">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Cartoon Mini Racing</span>
</div>
</div>
</a>
<a href="city-car-driving-stunt-master.html" target="_self" title="#" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/citycardrivingstuntmaster/city-car-driving-stunt-master.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="City Car Driving Stunt Master">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>City Car Driving Stunt Master</span>
</div>
</div>
</a>
<a href="city-rider.html" target="_self" title="#" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/carsimulatorarena/car-simulator-arena.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="City Rider">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>City Rider</span>
</div>
</div>
</a>
<a href="demolition-derby-crash-racing.html" target="_self" title="Demoliton Derby Crash Racing" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/demolitionderbycrashracing/demolition-derby-crash-racing.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Demoliton Derby Crash Racing">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Demoliton Derby Crash Racing</span>
</div>
</div>
</a>
<a href="flying-car-simulator.html" target="_self" title="Flying Car Simulator" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/flyingcarsimulator/flying-car-simulator-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Flying Car Simulator">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Flying Car Simulator</span>
</div>
</div>
</a>
<a href="fortride-open-world.html" target="_self" title="Fortride Open World" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/fortrideopenworld/fortride-open-world-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Fortride Open World">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Fortride Open World</span>
</div>
</div>
</a>
<a href="go-kart-go-ultra.html" target="_self" title="Go Kart Go! Ultra!" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/gokartgoultra/go-kart-go-ultra-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Go Kart Go! Ultra!">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Go Kart Go! Ultra!</span>
</div>
</div>
</a>
<a href="highway-racer-2.html" target="_self" title="Highway Racer 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/highwayracer2/highway-racer-2.1.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Highway Racer 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Highway Racer 2</span>
</div>
</div>
</a>
<a href="highway-racer-3d.html" target="_self" title="Highway Racer 3D" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/highwayracer3d/highway-racer-3d-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Highway Racer 3D">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Highway Racer 3D</span>
</div>
</div>
</a>
<a href="madalin-stunt-cars-2.html" target="_self" title="Madalin Stunt Cars 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/madalinstuntcars2/madalin-stunt-cars-2-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Madalin Stunt Cars 2">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Madalin Stunt Cars 2</span>
</div>
</div>
</a>
<a href="madalin-stunt-cars-3.html" target="_self" title="Madalin Stunt Cars 3" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/madalinstuntcars3/madalin-stunt-cars-3-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Madalin Stunt Cars 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Madalin Stunt Cars 3</span>
</div>
</div>
</a>
<a href="merge-cyber-racers.html" target="_self" title="Merge Cyber Racers" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/mergecyberracers/merge-cyber-racers.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Merge Cyber Racers">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Merge Cyber Racers</span>
</div>
</div>
</a>
<a href="merge-round-racers.html" target="_self" title="Merge Round Racers" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/mergeroundracers/merge-round-racers-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Merge Round Racers">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Merge Round Racers</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) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Burnin Rubber 5 Xs">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Burnin Rubber 5 Xs</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) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 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="rocket-soccer-derby.html" target="_self" title="Rocket Soccer Derby" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/rocketsoccerderby/rocket-soccer-derby-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Rocket Soccer Derby">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Rocket Soccer Derby</span>
</div>
</div>
</a>
<a href="smash-karts.html" target="_self" title="Smash Karts" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/smashkarts/smash-karts-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Smash Karts">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Smash Karts</span>
</div>
</div>
</a>
<a href="stunt-car-challenge-3.html" target="_self" title="Stunt Car Challenge 3" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/stuntcarchallenge3/stunt-car-challenge-3.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Stunt Car Challenge 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Stunt Car Challenge 3</span>
</div>
</div>
</a>
<a href="top-speed-3d.html" target="_self" title="Top Speed 3D" class="tile-card">
<figure class="image is-16by9">
<img loading="lazy" src="img/topspeed3d/top-speed-3d-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Top Speed 3D">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Top Speed 3D</span>
</div>
</div>
</a>
<a href="traffic-mania.html" target="_self" title="Traffic Mania" class="tile-card">
<figure class="image is-16by9">
<img loading="lazy" src="img/trafficmania/traffic-mania.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Traffic Mania">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Traffic Mania</span>
</div>
</div>
</a>
<a href="ultimate-off-road.html" target="_self" title="Ultimate Off Road" class="tile-card">
<figure class="image is-16by9">
<img loading="lazy" src="img/ultimateoffroad/ultimate-off-road.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Ultimate Off Road">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Ultimate Off Road</span>
</div>
</div>
</a>
<a href="drift-boss.html" target="_self" title="Drift Boss" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/driftboss/drift-boss-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Drift Boss">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Drift Boss</span>
</div>
</div>
</a>
<a href="drift-hunters.html" target="_self" title="Drift Hunters" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/drifthunters/drift-hunters-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Drift Hunters">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Drift Hunters</span>
</div>
</div>
</a>
<a href="burnout-drift-hilltop.html" target="_self" title="Burnout Drift Hilltop" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/burnoutdrifthilltop/burnout-drift-hilltop.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Burnout Drift Hilltop">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Burnout Drift Hilltop</span>
</div>
</div>
</a>
<a href="car-drift-racers-2.html" target="_self" title="Car Drift Racers 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/cardriftracers2/car-drift-racers-2.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Car Drift Racers 2">
</figure>
<div class="content">
<div class="badge is-best">
Best
</div>
<div class="name"><span>Car Drift Racers 2</span>
</div>
</div>
</a>
<a href="sling-drift.html" target="_self" title="Sling Drift" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/slingdrift/sling-drift-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Sling Drift">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Sling Drift</span>
</div>
</div>
</a>
<a href="bus-parking-3d.html" target="_self" title="Bus Parking 3D" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/busparking/bus-parking-3d-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Bus Parking 3D">
</figure>
<div class="content">
<div class="name"><span>Bus Parking 3D</span>
</div>
</div>
</a>
<a href="parking-fury.html" target="_self" title="Parking Fury" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/parkingfury/parking-fury.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Parking Fury">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Parking Fury</span>
</div>
</div>
</a>
<a href="parking-fury-2.html" target="_self" title="Parking Fury 2" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/parkingfury/parking-fury-2.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Parking Fury 2">
</figure>
<div class="content">
<div class="name"><span>Parking Fury 2</span>
</div>
</div>
</a>
<a href="parking-fury-3.html" target="_self" title="Parking Fury 3" class="tile-card not-mobile">
<figure class="image is-16by9">
<img loading="lazy" src="img/parkingfury/parking-fury-3.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Parking Fury 3">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>Parking Fury 3</span>
</div>
</div>
</a>
<a href="parking-fury-3d.html" target="_self" title="Parking Fury 3D" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/parkingfury/parking-fury-3d.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Parking Fury 3D">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Parking Fury 3D</span>
</div>
</div>
</a>
<a href="parking-fury-3d-beach-city.html" target="_self" title="Parking Fury 3D: Beach City" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/parkingfury3d/parking-fury-3d-beach-city-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Parking Fury 3D: Beach City">
</figure>
<div class="content">
<div class="name"><span>Parking Fury 3D: Beach City</span>
</div>
</div>
</a>
<a href="extreme-car-parking.html" target="_self" title="Extreme Car Parking" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/extremecarparking/extreme-car-parking-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Extreme Car Parking">
</figure>
<div class="content">
<div class="name"><span>Extreme Car Parking</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) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 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="endless-truck.html" target="_self" title="Endless Truck" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/endlesstruck/endless-truck-logo.webp" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Endless Truck">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>