This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
92 lines (78 loc) · 4.31 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="GAMBA-CLUB offers a collection of fun games and music curated by kids.">
<title>Games - GAMBA-CLUB</title>
<!-- Load Bootstrap and jQuery from CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<style>
.footer {
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
}
.game-iframe {
margin-bottom: 20px; /* Adds 20px of space between each iframe */
}
</style>
</head>
<body>
<!-- Navigation -->
<ul class="nav nav-pills">
<li class="nav-item"><a class="nav-link active" href="https://usaf154.github.io/index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="https://usaf154.github.io/games.html">Games</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">More</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Fixer</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Fixer (dangerous)</a>
</div>
</li>
</ul>
<!-- Games Section -->
<h2 class="text-center mt-4">Games!</h2>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<!-- Crazy Combat -->
<div class="embed-responsive embed-responsive-16by9 game-iframe">
<iframe class="embed-responsive-item" src="https://www.crazygames.com/embed/crazy-combat" allow="gamepad *;" frameborder="0" allowfullscreen loading="lazy"></iframe>
</div>
<!-- Sandbox City: Cars, Zombies, Ragdolls -->
<div class="embed-responsive embed-responsive-16by9 game-iframe">
<iframe class="embed-responsive-item" src="https://www.crazygames.com/embed/sandbox-city---cars-zombies-ragdolls" allow="gamepad *;" frameborder="0" allowfullscreen loading="lazy"></iframe>
</div>
<!-- Stickman Supreme Duelist 2 -->
<div class="embed-responsive embed-responsive-16by9 game-iframe">
<iframe class="embed-responsive-item" src="https://www.crazygames.com/embed/stickman-supreme-duelist-2" allow="gamepad *;" frameborder="0" allowfullscreen loading="lazy"></iframe>
</div>
<!-- Kick the Buddy -->
<div class="embed-responsive embed-responsive-16by9 game-iframe">
<iframe class="embed-responsive-item" src="https://www.jopi.com/embed.php?game=kick-the-buddy" allow="gamepad *;" frameborder="0" allowfullscreen loading="lazy"></iframe>
</div>
<!-- Message for broken game -->
<p>Sorry for the broken game, just click the link</p>
<!-- Smash Karts -->
<div class="embed-responsive embed-responsive-16by9 game-iframe">
<iframe class="embed-responsive-item" src="https://smashkarts.io/" allow="gamepad *;" frameborder="0" allowfullscreen loading="lazy"></iframe>
</div>
</div>
</div>
</div>
<!-- Music Section -->
<h2 class="text-center mt-5">Music!</h2>
<div class="container">
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/4q0EanhIcdSPkfo1lFbIKg?utm_source=generator" width="100%" height="352" frameborder="0" allowfullscreen loading="lazy"></iframe>
</div>
<!-- Footer -->
<footer class="footer mt-5 text-center">
</footer>
<!-- Load Bootstrap JS from CDN -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
</body>
</html>