File size: 1,054 Bytes
bb17cd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>