-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.82 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🔊 Soundboard 🔊</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Bar -->
<header class="header-bar">
<a href="https://kay-who-codes.github.io/Soundboard/" class="header-link">Kay's Soundboard</a>
<div class="dropdown">
<button class="dropbtn" onclick="toggleDropdown()">More Apps</button>
<div class="dropdown-content">
<a href="https://kay-who-codes.github.io/Misanthrocards/">Game - Misanthrocards</a>
<a href="https://kay-who-codes.github.io/Invention-Cards/">Game - Invention Cards</a>
<a href="https://kay-who-codes.github.io/Job-Cards/">Game - Job Cards</a>
<a href="https://kay-who-codes.github.io/Soundboard/">App - Soundboard</a>
<a href="https://kay-who-codes.github.io/Song-Inspirator/">App - Song Inspirator</a>
<a href="https://kay-who-codes.github.io/Random-Numbers/">App - Random Number Generator</a>
<a href="https://kay-who-codes.github.io/Takeaway-Suggester">App - Takeaway Suggester</a>
<a href="https://kay-who-codes.github.io/Coinflip">App - Coinflip</a>
<a href="https://kay-who-codes.github.io/Memento-Mori">App - Memento Mori</a>
</div>
</div>
</header>
<h1>🔊 Pick a Sound! 🔊</h1>
<div id="soundboard" class="grid-container"></div>
<!-- Dark Mode/Light Mode Toggle -->
<div class="theme-toggle">
<label for="themeSwitch">🌞 Light Mode</label>
<input type="checkbox" id="themeSwitch">
<label for="themeSwitch">🌙 Dark Mode</label>
</div>
<script src="script.js"></script>
</body>
<footer>
Made by <a href="https://linktr.ee/kaywhocreates" target="_blank" rel="noopener noreferrer">Kay 🧡</a>
</footer>
</html>