still-alive/index.html
Victor Westerlund 601c7d3dd2 Unsynced working example
Everything is cued up and good to go. Now comes the fun part of syncing the lyrics with the song
2021-10-30 13:30:15 +02:00

21 lines
No EOL
605 B
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Still Alive</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<main>
<p id="play">Still Alive</p>
<p id="message"></p>
</main>
<footer>
<a href="https://github.com/VictorWesterlund/still-alive">Source on GitHub</p>
</footer>
<audio id="still-alive" src="assets/media/still-alive.webm"></audio>
<script type="module" src="assets/js/script.mjs"></script>
</body>
</html>