summaryrefslogtreecommitdiff
path: root/tape-deck.html
blob: 2d88d9c01d9065350142d87047756ece80348dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang=en>
    <head>
        <meta charset=UTF-8>
        <title>2019 Mix Side A - Winter</title>
    </head>
    <body>
        <div display="flex">
            <div class="tape-deck">
                <img id="tape-deck" src="images/cool-deck.png">
            </div>
            <div class="buttons" display="flex" flex-direction="row" justify-content="center">
                <button id="playButton" onclick="play()">Play</button>
                <button id="pauseButton" onclick="pause()">Pause</button>
            </div>
            <div class="notes">
                <p id="notes"></p>
            </div>
        </div>
        <script src="tape-deck.js"></script>
    </body>
</html>