summaryrefslogtreecommitdiff
path: root/static/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/index.html')
-rw-r--r--static/index.html24
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>