Spaces:
Runtime error
Runtime error
Create index.html
Browse files- index.html +17 -0
index.html
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Music Player</title>
|
6 |
+
<link rel="stylesheet" href="style.css">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<div id="app">
|
10 |
+
<input type="text" id="search" placeholder="Search music...">
|
11 |
+
<div id="music-list"></div>
|
12 |
+
<div id="loading" style="display:none;">Loading...</div>
|
13 |
+
<button id="toggle-play">Pause</button>
|
14 |
+
</div>
|
15 |
+
<script src="script.js"></script>
|
16 |
+
</body>
|
17 |
+
</html>
|