diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2025-12-13 12:32:15 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2025-12-13 12:32:15 +0500 |
| commit | ae11ed555cb350ea4c11fc1625f4a56229969ddd (patch) | |
| tree | 1d02b84131b713a2eed9a332ffac51997b0ec285 /static/index.html | |
| parent | 4b8ef84059e772ef7636c451356680ec5b0983c4 (diff) | |
Tracks meta
Diffstat (limited to 'static/index.html')
| -rw-r--r-- | static/index.html | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/static/index.html b/static/index.html index f6127d7..4ebe902 100644 --- a/static/index.html +++ b/static/index.html @@ -1,13 +1,29 @@ <html> <head> + <link href="index.css" rel="stylesheet" /> <script src="./index.js"></script> </head> <body> - <h1> xdx </h1> - <button onclick="GetSongs()"> Get songs </button> - <button onclick="SetRandomSong()"> Set random song </button> + <div class="Info"> + <h1> Rock culture exam </h1> + <h1 id="Artist" > Artist </h1> + <h1 id="Title" > Title </h1> + <h1 id="Album" > Album </h1> + <h1 id="Start" > Start position </h1> + </div> + <div class="controls"> + <button onclick="Pause()" class="controlBtn"> + <h1 onclick="Pause" class="controlElem"> Pause </h1> + </button> + <button onclick="Resume()" class="controlBtn"> + <h1 onclick="Pause" class="controlElem"> Resume </h1> + </button> + <button onclick="SetRandomSong()" class="controlBtn"> + <h1 onclick="Pause" class="controlElem"> Next song </h1> + </button> + </div> <audio id="mainAudio"> - <source type="audio/mpeg" src=""/> + <source type="audio/mpeg" /> </audio> </body> </html> |
