mrdreamers commited on
Commit
bb17cd6
·
verified ·
1 Parent(s): f746514

Create mp3.html

Browse files
Files changed (1) hide show
  1. mp3.html +45 -0
mp3.html ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>MP3 Player</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ background: black;
11
+ display: grid;
12
+ place-items: center;
13
+ height: 100vh;
14
+ font-family: Arial, sans-serif;
15
+ }
16
+ .wrap { text-align: center; }
17
+ .label {
18
+ display:inline-block;
19
+ padding:10px 18px;
20
+ border-radius:25px;
21
+ border:2px solid #fcc200;
22
+ background:black;
23
+ color:#fcc200;
24
+ font-family: 'Digit', Arial, sans-serif;
25
+ font-size:14px;
26
+ box-shadow: 0 0 10px #fcc200, 0 0 20px #fcc200;
27
+ text-shadow: 0 0 5px #fcc200;
28
+ margin-bottom:10px;
29
+ }
30
+ audio {
31
+ width: 300px;
32
+ border-radius: 20px;
33
+ box-shadow: 0 0 10px #fcc200, 0 0 20px #fcc200;
34
+ }
35
+ </style>
36
+ </head>
37
+ <body>
38
+ <div class="wrap">
39
+ <div class="label">🎵 MP3 PLAY (press ▶ below)</div>
40
+ <audio controls autoplay loop preload="auto">
41
+ <source src="https://files.catbox.moe/cg3d08.mp3" type="audio/mpeg">
42
+ </audio>
43
+ </div>
44
+ </body>
45
+ </html>