-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.46 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.46 KB
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
<!--
* Source: https://github.com/oinam/bubble-pop
* Play at https://bubble-pop.oinam.com
* Story at https://brajeshwar.com/2025/bubble-wrap/
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pop the Bubbles from the Wrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script defer src="https://analytics.oinam.net/script.js" data-website-id="2b8dbaa4-d51f-4d23-b9c4-4d8003807df4"></script>
</head>
<body>
<header class="navbar">
<nav>
<span class="navbar-title">Pop the Bubbles from the Wrap</span>
<span class="navbar-counter">Popped <span id="popped-counter" class="navbar-counter-pill">0</span></span>
</nav>
</header>
<div class="bubble-wrap-background">
<div id="game-container">
<div id="bubble-grid" class="bubble-grid">
<!-- Dynamic bubbles go here -->
</div>
</div>
</div>
<img src="bubble.png" alt="" style="display:none;width:0;height:0;" loading="eager" decoding="async">
<img src="bubble-popped.png" alt="" style="display:none;width:0;height:0;" loading="eager" decoding="async">
<audio id="pop-sound-1" src="pop-1.mp3" preload="auto"></audio>
<audio id="pop-sound-2" src="pop-2.mp3" preload="auto"></audio>
<audio id="pop-sound-3" src="pop-3.mp3" preload="auto"></audio>
<script src="main.js" data-cfasync="false"></script>
</body>
</html>