Update index.html

This commit is contained in:
Voxel 2025-03-13 15:37:56 -04:00 committed by GitHub
parent 8748fb4683
commit eb423850c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,2 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World's Hardest Game</title>
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
embed {
width: 100vw;
height: 100vh;
display: block;
}
</style>
</head>
<body>
<embed src="https://mgalternative.github.io/theworldshardestgame.swf" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</body>
</html>