mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
29 lines
852 B
HTML
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: 225vw;
|
|
height: 225vh;
|
|
}
|
|
</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>
|