deepsite / mp3.html
mrdreamers's picture
Create mp3.html
bb17cd6 verified
raw
history blame
1.05 kB
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MP3 Player</title>
<style>
body {
margin: 0;
background: black;
display: grid;
place-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.wrap { text-align: center; }
.label {
display:inline-block;
padding:10px 18px;
border-radius:25px;
border:2px solid #fcc200;
background:black;
color:#fcc200;
font-family: 'Digit', Arial, sans-serif;
font-size:14px;
box-shadow: 0 0 10px #fcc200, 0 0 20px #fcc200;
text-shadow: 0 0 5px #fcc200;
margin-bottom:10px;
}
audio {
width: 300px;
border-radius: 20px;
box-shadow: 0 0 10px #fcc200, 0 0 20px #fcc200;
}
</style>
</head>
<body>
<div class="wrap">
<div class="label">🎵 MP3 PLAY (press ▶ below)</div>
<audio controls autoplay loop preload="auto">
<source src="https://files.catbox.moe/cg3d08.mp3" type="audio/mpeg">
</audio>
</div>
</body>
</html>