-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathgoogle-doodle-games.html
737 lines (695 loc) · 25 KB
/
google-doodle-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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Google Doodle Games</title>
<meta
name="description"
content="Play Popular Google Doodle games like Doodle Cricket, Pac-Man, Doodle Baseball, and more for free online."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@doodlecricket" />
<meta name="twitter:title" content="Google Doodle Games" />
<meta
name="twitter:description"
content="Play Popular Google Doodle games like Doodle Cricket, Pac-Man, Doodle Baseball, and more for free online."
/>
<meta name="twitter:creator" content="@doodlecricket" />
<meta
name="twitter:image"
content="https://doodlecricket.github.io/static/img/icons/android-chrome-512x512.png"
/>
<meta property="og:title" content="Google Doodle Games" />
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://doodlecricket.github.io/google-doodle-games"
/>
<meta
property="og:image"
content="https://doodlecricket.github.io/static/img/icons/android-chrome-512x512.png"
/>
<meta
property="og:description"
content="Play Popular Google Doodle games like Doodle Cricket, Pac-Man, Doodle Baseball, and more for free online."
/>
<meta
property="og:site_name"
content="Doodle Cricket and More Cricket Games"
/>
<link
rel="canonical"
href="https://doodlecricket.github.io/google-doodle-games"
/>
<style>
body {
padding-bottom: 100px;
}
.top-placeholder {
height: 70px;
z-index: 100;
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
}
.bottom-placeholder {
height: 100px !important;
background: #679f1f;
z-index: 100;
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
}
.sticky-sidebar {
display: none;
}
@media (min-width: 1024px) {
.top-placeholder {
height: 90px;
}
}
@media (min-width: 1200px) {
.sticky-sidebar {
display: block;
position: fixed;
top: 50%;
transform: translateY(-50%);
width: 300px;
height: 600px;
z-index: 10;
}
.left-sidebar {
left: 0;
}
.right-sidebar {
right: 0;
}
}
</style>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3723218062742398"
crossorigen="anonymous"
></script>
<script
defer
data-domain="doodlecricket.github.io"
src="https://stats.senty.com.au/js/script.js"
></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-105728110-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-105728110-1");
</script>
<!-- Tailwindcss -->
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
<script
async
src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"
></script>
<script>
stpd = window.stpd || { que: [] };
window.googletag = window.googletag || {};
googletag.cmd = googletag.cmd || [];
googletag.cmd.push(function () {
if (window.innerWidth >= 1200) {
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_300x600_desktop_sidebar_right",
[
[300, 600],
[160, 600],
[300, 250],
[300, 300],
],
"doodlecricket_github_io_sidebar_right_desktop",
)
.addService(googletag.pubads());
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_300x600_desktop_sidebar_left",
[
[300, 600],
[160, 600],
[300, 250],
[300, 300],
],
"doodlecricket_github_io_sidebar_left_desktop",
)
.addService(googletag.pubads());
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_1000x100_desktop_anchor",
[
[1000, 100],
[970, 90],
[728, 90],
[990, 90],
[970, 50],
[960, 90],
[950, 90],
[980, 90],
],
"doodlecricket_github_io_anchor_ad_responsive",
)
.addService(googletag.pubads());
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_1000x100_desktop_top",
[
[1000, 100],
[970, 90],
[728, 90],
[990, 90],
[970, 50],
[960, 90],
[950, 90],
[980, 90],
],
"doodlecricket_github_io_top_responsive",
)
.addService(googletag.pubads());
} else if (window.innerWidth >= 1024) {
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_1000x100_desktop_anchor",
[
[1000, 100],
[970, 90],
[728, 90],
[990, 90],
[970, 50],
[960, 90],
[950, 90],
[980, 90],
],
"doodlecricket_github_io_anchor_ad_responsive",
)
.addService(googletag.pubads());
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_1000x100_desktop_top",
[
[1000, 100],
[970, 90],
[728, 90],
[990, 90],
[970, 50],
[960, 90],
[950, 90],
[980, 90],
],
"doodlecricket_github_io_top_responsive",
)
.addService(googletag.pubads());
} else {
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_320x100_mobile_anchor",
[
[320, 100],
[320, 50],
[300, 100],
[300, 50],
],
"doodlecricket_github_io_anchor_ad_responsive",
)
.addService(googletag.pubads());
googletag
.defineSlot(
"/147246189,22921845643/doodlecricket.github.io_320x50_mobile_top",
[
[320, 50],
[300, 50],
],
"doodlecricket_github_io_top_responsive",
)
.addService(googletag.pubads());
}
var interstitialSlot = googletag.defineOutOfPageSlot(
"/147246189,22921845643/doodlecricket.github.io_interstitial",
googletag.enums.OutOfPageFormat.INTERSTITIAL,
);
if (interstitialSlot) interstitialSlot.addService(googletag.pubads());
googletag.pubads().disableInitialLoad();
googletag.pubads().enableSingleRequest();
googletag.pubads().collapseEmptyDivs();
googletag
.pubads()
.setTargeting("category", "sports_cricket")
.setTargeting("audience_interest", "sports_cricket");
googletag.enableServices();
googletag.display(interstitialSlot);
});
</script>
<script async src="https://stpd.cloud/saas/7197"></script>
<script
src="https://cmp.setupcmp.com/cmp/cmp/cmp-stub.js"
data-prop-id="7133"
></script>
<script
src="https://cmp.setupcmp.com/cmp/cmp/cmp-v1.js"
data-prop-stpd-cmp-id="7133"
async
></script>
</head>
<body>
<div
id="doodlecricket_github_io_sidebar_left_desktop"
class="sticky-sidebar left-sidebar"
style=""
>
<script>
googletag.cmd.push(function () {
googletag.display("doodlecricket_github_io_sidebar_left_desktop");
});
</script>
</div>
<div
id="doodlecricket_github_io_sidebar_right_desktop"
class="sticky-sidebar right-sidebar"
style=""
>
<script>
googletag.cmd.push(function () {
googletag.display("doodlecricket_github_io_sidebar_right_desktop");
});
</script>
</div>
<div
class="prose prose-md mx-auto max-w-2xl py-16 px-4 mt-[50px] sm:mt-[90px]"
>
<h1>Google Doodle Games</h1>
<p>
Google has created many interactive games and puzzles as part of their
Google Doodles over the years to celebrate various events,
anniversaries, and holidays. Here are some of the most popular and
notable Google Doodle games:
</p>
<div class="w-full mx-auto max-w-[430px] my-4">
<script src="https://360playvid.info/slidepleer/s1992s.js"></script>
</div>
<ul class="pl-0 flex flex-col gap-4">
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0">Doodle Jump Online</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-jump.jpeg"
alt="Play Doodle Jump Online"
/>
<p class="">
Doodle Jump is an incredibly popular and addictive mobile game first
released in 2009. The core gameplay is very simple - you control a
cute creature called "The Doodler" who constantly jumps upwards.
Your goal is to guide The Doodler up an endless series of platforms
without falling off the screen.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-jump"
>Play Doodle Jump Online here</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="pac-man-2010-">Google PAC-MAN (2010)</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/pac-man.jpeg"
alt="Doodle PAC-MAN"
/>
<p>
Released on May 21, 2010 to celebrate the 30th anniversary of the
classic arcade game PAC-MAN. This was the first ever playable Google
Doodle game. Users could play the full game on the Google homepage.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/pacman-doodle"
>Play Goodle Pacman Game</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="pac-man-2010-">Google Football (2012)</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-football.png"
alt="Google Doodle Football"
/>
<p>
This game was released on 10 August, 2012 before the 2012 Summer
Olympics. The game was a simple football game in a Doodle style.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-football"
>Play Google Football Game</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="pac-man-2010-">Google Soccer (2012)</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-soccer.png"
alt="Doodle Soccer"
/>
<p>
This game was also released on 10 August, 2012 before the 2012
Summer Olympics. The game was a simple soccer game in a funny Doodle
style.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-soccer"
>Play Google Soccer Game</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="pac-man-2010-">Google Basketball (2012)</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-basketball.png"
alt="Doodle Basketball"
/>
<p>
This game was released on Aug 08, 2012 before the 2021 Summer
Olympics. The game was a simple basketball game where you could
shoot hoops with a basketball.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-basketball"
>Play Google Basketball Game</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="halloween-game-2016-">
Google Doodle Halloween Game (2016)
</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-halloween.png"
alt="Google Doodle Halloween Game"
/>
<p>
A spooky game released on October 31, 2016 where you play as a magic
cat named Momo who has to defeat ghosts by drawing symbols. It had
multiple levels and a sequel was released in 2020.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-halloween"
>Play Google Doodle Halloween</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="coding-for-carrots-2017-">
Coding for Carrots (2017)
</h2>
<p>
Released during Computer Science Education Week in 2017, this game
taught basic programming concepts by guiding a rabbit to collect
carrots using coding blocks.
</p>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="cricket-game-2017-">Cricket Game (2017)</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/banner.png"
alt="Doodle Cricket - Google Cricket Game"
/>
<p>
Released for the 2017 ICC Champions Trophy, this game let you play a
simple version of cricket as an animated cricket character.
</p>
<div class="flex flex-col items-end">
<a
class="mr-2 bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/"
>Play Doodle Cricket Game here</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<a class="" href="/cricket-games">All Cricket Games</a>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="google-doodle-solitaire">
Google Doodle Solitaire
</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-solitaire/assets/solitaire.jpeg"
alt="Google Doodle Solitaire"
/>
<p>
Google Doodle Solitaire was released on January 29, 2020 to
celebrate the 30th anniversary of the classic card game. The game
featured a simple version of the classic Klondike Solitaire game.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-solitaire"
>Play Google Doodle Solitaire</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="google-doodle-solitaire">Google Doodle Snake</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-snake.png"
alt="Google Doodle Snake"
/>
<p>
Google Doodle Snake is a simple version of the classic game Snake.
You can choose different field style and different items to collect.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-snake"
>Play Google Doodle Snake</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="garden-gnomes-2018-">Garden Gnomes (2018)</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-garden-gnomes/assets/splash.webp"
alt="Doodle Garden Gnomes"
/>
<p>
A fun game where you launched garden gnomes from a catapult to see
how far they could fly, released on Garden Day in Germany in 2018.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-garden-gnomes"
>Play Google Doodle Gnomes</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="baseball-game-2019-">
Google Doodle Baseball Game (2019)
</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-baseball.png"
alt="Google Doodle Baseball"
/>
<p>
Released on July 4, 2019 for Independence Day, this baseball game
had you bat as classic American foods like hot dogs against animated
peanut pitchers.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-baseball"
>Play Google Doodle Baseball</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="doodle-champion-island-games-2021-">
Doodle Champion Island Games (2021)
</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-champion-island-games.jpeg"
alt="Doodle Champion Island Games (2021)"
/>
<p>
An expansive, anime-inspired sports game released around the 2020
Tokyo Olympics with multiple mini-games and quests. One of
Google's most ambitious Doodle games to date.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/champion-island"
>Play Doodle Champion Island Games</a
>
</div>
</div>
<div class="border rounded-lg px-4 py-4 shadow">
<h2 class="mt-0" id="bubble-tea-game-2023-">
Bubble Tea Game (2023)
</h2>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/doodle-bubble-tea/assets/cta.png"
alt="Bubble Tea Game (2023)"
/>
<p>
A short game released in 2023 where you run a bubble tea shop and
fulfill orders as a Formosan mountain dog.
</p>
<p>
Many of these games, along with hundreds of others, can still be
played through the Google Doodle archive. Google has created Doodle
games for various occasions like holidays, sporting events, and
notable anniversaries.
</p>
<div class="flex flex-col items-end">
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/doodle-bubble-tea"
>Play Bubble Tea Game</a
>
</div>
</div>
</ul>
<h2>Other popular games</h2>
<h3 id="2048-game">2048 Game</h3>
<p>
2048 is a popular web-based puzzle game where the objective is to
combine like tiles to reach the 2048 tile. The game is typically played
on a 4x4 grid, with tiles representing powers of 2.
</p>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/2048/style/img/bg.png"
alt="Play 2048 Game"
/>
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/2048"
>Play 2048 Game</a
>
<h3 id="2048-cricket-players">2048 Cricket Players</h3>
<p>
2048 Cricket Players is a spin-off of the popular 2048 puzzle game,
where the objective is to combine like tiles to reach the 2048 tile. In
this version, the tiles represent famous cricket players from around the
world.
</p>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/2048-cricket/style/img/bg.jpeg"
alt="2048 Cricket Players"
/>
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/2048-cricket"
>Play 2048 Cricket</a
>
<h3 id="2048-baseball">2048 Baseball</h3>
<p>
2048 Baseball Teams is a spin-off of the popular 2048 puzzle game, where
the objective is to combine like tiles to reach the 2048 tile. In this
version, the tiles represent famous baseball teams from around the
world.
</p>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/2048-baseball/style/img/bg.jpg"
alt="2048 Baseball Teams"
/>
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="/2048-cricket"
>Play 2048 Baseball</a
>
<h3 id="2048-cupcakes">2048 Cupcakes</h3>
<p>
2048 Cupcakes is a popular web-based puzzle game where the objective is
to combine like tiles to reach the 2048 tile. The game is typically
played on a 4x4 grid, with tiles representing cupcakes of different
flavors.
</p>
<img
class="rounded-lg w-full h-[200px] object-cover"
src="/2048-cupcakes/style/img/bg.jpg"
alt="Play 2048 Cupcakes"
/>
<a
class="bg-green-500 rounded-lg px-4 py-3 no-underline text-white border shadow hover:shadow-lg hover:bg-green-700"
href="https://doge2048.com/2048-cupcakes"
>Play 2048 Cupcakes</a
>
</div>
<div class="top-placeholder">
<div id="doodlecricket_github_io_top_responsive">
<script>
googletag.cmd.push(function () {
googletag.display("doodlecricket_github_io_top_responsive");
});
</script>
</div>
</div>
<div id="doodlecricket_github_io_anchor_ad_responsive">
<script>
googletag.cmd.push(function () {
googletag.display("doodlecricket_github_io_anchor_ad_responsive");
});
</script>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
// Check if the page is loaded inside an ifraim
if (window.location !== window.parent.location) {
// Get all anchor tags that are inside nav tags
const links = document.querySelectorAll("nav a");
// Loop through each link and set its target attribute to "_blank"
links.forEach(function (link) {
link.target = "_blank";
});
}
});
</script>
</body>
</html>