2022-10-25 17:38:06 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>wfc</title>
|
|
|
|
<style>
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
2022-10-25 22:55:18 +02:00
|
|
|
font-family: sans-serif;
|
2022-10-25 17:38:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: black;
|
2022-10-25 22:55:18 +02:00
|
|
|
color: #ccc;
|
2022-10-25 17:38:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#render {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: black;
|
|
|
|
}
|
2022-10-25 22:55:18 +02:00
|
|
|
|
|
|
|
noscript {
|
|
|
|
display: block;
|
|
|
|
margin-top: 60px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #cb54c2;
|
|
|
|
}
|
2022-10-25 17:38:06 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-10-25 22:55:18 +02:00
|
|
|
<noscript>
|
|
|
|
<h1>JavaScript Disabled</h1>
|
|
|
|
<p>
|
|
|
|
It appears that JavaScript is disabled in your browser. Excellent!<br>
|
|
|
|
However, by nature of being an interactive game, this site requires it.<br>
|
|
|
|
Please enable JavaScript in your browser's settings to play this game.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Alternatively, you may also obtain the source code and run it locally:<br>
|
|
|
|
<a href="https://git.bsd.gay/fef/wfcjs">https://git.bsd.gay/fef/wfcjs</a>
|
|
|
|
</p>
|
|
|
|
</noscript>
|
2022-10-25 17:38:06 +02:00
|
|
|
<canvas id="render"></canvas>
|
|
|
|
<script type="text/javascript" src="bundle.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|