You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.4 KiB
HTML

<!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;
font-family: sans-serif;
}
html, body {
margin: 0;
overflow: hidden;
background-color: black;
color: #ccc;
}
#render {
position: absolute;
top: 0;
left: 0;
background-color: black;
}
noscript {
display: block;
margin-top: 60px;
text-align: center;
line-height: 1.5rem;
}
a {
color: #cb54c2;
}
</style>
</head>
<body>
<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>
<canvas id="render"></canvas>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>