riddhiman commited on
Commit
3f1062f
·
verified ·
1 Parent(s): db0a14f

Create index.html

Browse files
Files changed (1) hide show
  1. 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>