40 lines
888 B
HTML
40 lines
888 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 {
|
|
position: absolute;
|
|
image-rendering: pixelated;
|
|
}
|
|
#fps {
|
|
position: fixed;
|
|
right: 6px;
|
|
bottom: 6px;
|
|
font: 13px monospace;
|
|
white-space: pre;
|
|
line-height: 1.35;
|
|
text-align: right;
|
|
color: #fff;
|
|
background: #000;
|
|
opacity: 0.5;
|
|
padding: 2px 6px;
|
|
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>
|