-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubbles.html
53 lines (42 loc) · 1.58 KB
/
bubbles.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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="bubbles.css">
<meta charset="utf-8" />
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<title>Bubbles Trouble</title>
</head>
<body>
<a href="home.html" class="logo-link">
<img src="PixelPalzLogo.png" alt="PixelPalz Logo" class="logo">
</a>
<div class="menu-toggle" onclick="toggleMenu()">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<div class="dropdown-content" id="dropdownContent">
<a href="kikispie.html">Kiki's Pie</a>
<a href="dresskiki.html">Dress Up Kiki</a>
<a href="bubbles.html">Bubbles Trouble</a>
<a href="mauve.html">Mauve the Frog</a>
<a href="magic.html">Magic the Butterfly</a>
</div>
<main class="hover-container">
</main>
<script src="bubbles.js"></script>
<script>
function toggleMenu() {
var dropdownContent = document.getElementById("dropdownContent");
dropdownContent.style.display === "none" ? dropdownContent.style.display = "block" : dropdownContent.style.display = "none";
}
</script>
</body>
<footer>
<div class="footer-text">
<a href="https://github.com/stam4tia" target="_blank" style="text-decoration: none; color: #000000;">© 2024 Stamatia Daramboukas</a>
</div>
</footer>
</html>