<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<head>
<title>Freezeout</title>
<style>
html {
touch-action: manipulation;
}
body {
background: #AAAAAA;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
canvas {
margin: 0;
display: block;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<ul hidden>
<li id="server-url">ws://localhost:9871</li>
</ul>
</body>
</html>