diff options
Diffstat (limited to 'tape-deck.html')
-rw-r--r-- | tape-deck.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tape-deck.html b/tape-deck.html index 21eeda2..1366fe5 100644 --- a/tape-deck.html +++ b/tape-deck.html @@ -11,11 +11,14 @@ <img id="tape-deck" class="tape-deck-img" src="images/cool-deck.png"> </div> <div class="button-container"> - <button onclick="play()"><img class="play-button" id="play-button" src="images/play-button-up.png"></button> + <button onclick="play()" class="touch-button"> + <img class="play-button" id="play-button" src="images/play-button-up.png"> + </button> </div> <div class="notes"> <p id="notes"></p> </div> + <button onclick="reset()"> reset tape </button> </div> <script src="tape-deck.js"></script> </body> |