summaryrefslogtreecommitdiff
path: root/static/index.html
blob: 4ebe902808f00b9c1a5a378c7f0e5ed7411a010c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
    <head>
        <link href="index.css" rel="stylesheet" />
        <script src="./index.js"></script>
    </head>
    <body>
        <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" />
        </audio>
    </body>
</html>