sounds
unknown
plain_text
2 months ago
2.9 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ultimate Meme Soundboard</title>
<style>
/* CSS Section */
body {
background-color: #0f0f0f;
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
h1 {
margin-bottom: 30px;
text-shadow: 2px 2px #ff4757;
letter-spacing: 2px;
}
.board {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
max-width: 800px;
width: 90%;
padding: 20px;
background: #1e1e1e;
border-radius: 15px;
box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
}
.sound-btn {
background-color: #2f3542;
color: white;
border: 2px solid #57606f;
padding: 20px 10px;
border-radius: 12px;
font-weight: bold;
cursor: pointer;
transition: all 0.2s ease;
text-transform: uppercase;
font-size: 0.9rem;
}
.sound-btn:hover {
background-color: #ff4757;
border-color: #ff6b81;
transform: translateY(-3px);
}
.sound-btn:active {
transform: translateY(1px);
filter: brightness(1.2);
}
.controls {
margin-top: 30px;
}
.stop-btn {
background-color: #747d8c;
color: white;
border: none;
padding: 10px 25px;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.stop-btn:hover {
background-color: #2f3542;
}
</style>
</head>
<body>
<h1>MEME SOUNDBOARD</h1>
<div class="board">
<button class="sound-btn" onclick="play('airhorn.mp3')">🚨 Airhorn</button>
<button class="sound-btn" onclick="play('vine-boom.mp3')">💥 Vine Boom</button>
<button class="sound-btn" onclick="play('emotional-damage.mp3')">🎭 Emotional Damage</button>
<button class="sound-btn" onclick="play('wow.mp3')">🤩 Wow!</button>
<button class="sound-btn" onclick="play('bruh.mp3')">💀 Bruh</button>
<button class="sound-btn" onclick="play('hell-naw.mp3')">🚫 Hell Naw</button>
</div>
<div class="controls">
<button class="stop-btn" onclick="stopAll()">STOP ALL SOUNDS</button>
</div>
<script>
/* JavaScript Section */
letEditor is loading...
Leave a Comment