We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e164fb commit 14fa618Copy full SHA for 14fa618
Source-Code/MusicPlayer/index.html
@@ -0,0 +1,35 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Music Player</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ </head>
9
+ <body>
10
+ <div class="music-player">
11
+ <h1>Music Player</h1>
12
+ <div class="player">
13
+ <h2 id="song-title">No song playing</h2>
14
+ <audio id="audio"></audio>
15
+ <div class="controls">
16
+ <button id="prev">⏮️</button>
17
+ <button id="play">▶️</button>
18
+ <button id="next">⏭️</button>
19
+ </div>
20
+ <input type="range" id="volume" min="0" max="1" step="0.01" value="1">
21
22
+ <div class="song-list">
23
+ <h3>Your Playlist</h3>
24
+ <ul id="playlist"></ul>
25
26
+ <div class="add-song">
27
+ <h3>Add Your Songs</h3>
28
+ <input type="file" id="file-input" accept="audio/*">
29
+ <button id="add-song-btn">Add Song</button>
30
31
32
+ <script src="script.js"></script>
33
+
34
+</body>
35
+</html>
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments