still-alive/index.html
Victor Westerlund cf3eecb27f Style changes and log removal
Fixed the scroll direction for lyrics, made the art window's font clamp (and centered) and also removed some loggers.

player.html will redirect to the main page if opened without a hash and will no longer be caught by crawlers that care about robots.txt
2021-10-31 12:35:03 +01:00

22 lines
No EOL
725 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">
<meta name="description" content="End credits from 'Portal' - the video game, recreated with JS and browser windows.">
<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>