still-alive/index.html
Victor Westerlund 7a6ed67d92 Fix Monkeydo events and #3
Monkeydo events will now be executed through the Proxy created in 8b659066cc

This commit also implements a solution for #3 by having each window report to its PlayerManager when it has been closed.
2021-12-05 22:09:56 +01:00

23 lines
No EOL
770 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">
<style>body { text-align: center; }</style>
</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>