meat/index.html

37 lines
804 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MEAT</title>
<style>
html,
body {
margin: 0;
height: 100%;
background: #000;
overflow: hidden;
}
#screen {
display: block;
image-rendering: pixelated;
}
#fps {
position: fixed;
right: 6px;
bottom: 6px;
font: 16px monospace;
color: #fff;
background: #000;
opacity: 0.5;
padding: 1px 5px;
pointer-events: none;
}
</style>
</head>
<body>
<canvas id="screen"></canvas>
<div id="fps">-- fps</div>
<script type="module" src="/app/main.ts"></script>
</body>
</html>