blob: 6a260fff642b0d7642b41f872ebb04ab49b02e92 (
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 src="images/cool-deck.gif">
</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>
|