diff options
author | Grant Shangreaux <shshoshin@protonmail.com> | 2020-01-12 23:19:28 -0600 |
---|---|---|
committer | Grant Shangreaux <shshoshin@protonmail.com> | 2020-01-12 23:19:28 -0600 |
commit | a9a1509405804be9f329a4168515a607b1bbea1e (patch) | |
tree | 23f50719bf82563646ba387b253a15ac8ae1ddad /index.html | |
parent | 70fb6d7c519d1a81afcc6cbe5aeb6f3b6850e3e6 (diff) |
Feature: resume playback from local storage of current tape time
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -4,6 +4,7 @@ <meta charset=UTF-8> <link rel="stylesheet" type="text/css" href="style.css"> <title>Tapes</title> + <script src="/skewer"></script> </head> <body> <div class="intro"> @@ -14,12 +15,18 @@ </p> </div> <div class="tape-container"> - <a href="tape-deck.html?side=A"> - <img src="images/side-a.jpeg" class="tape"> - </a> - <a href="tape-deck.html?side=B"> + <div class="side"> + <h3>Winter</h3> + <a href="tape-deck.html?side=A"> + <img src="images/side-a.jpeg" class="tape"> + </a> + </div> + <div class="side"> + <h3>Spring</h3> + <a href="tape-deck.html?side=B"> <img src="images/side-b.jpeg" class="tape"> - </a> + </a> + </div> </div> </body> </html> |