pages/assets/games/whg/index.html
2025-03-13 15:42:52 -04:00

29 lines
852 B
HTML

<!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;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
}
embed {
width: 150vw;
height: 150vh;
}
</style>
</head>
<body>
<embed src="https://mgalternative.github.io/theworldshardestgame.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</body>
</html>