meat/index.html

38 lines
804 B
HTML
Raw Normal View History

2026-08-04 02:09:54 +02:00
<!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;
}
2026-08-04 03:00:58 +02:00
#fps {
position: fixed;
right: 6px;
bottom: 6px;
font: 16px monospace;
color: #fff;
background: #000;
opacity: 0.5;
padding: 1px 5px;
pointer-events: none;
}
2026-08-04 02:09:54 +02:00
</style>
</head>
<body>
<canvas id="screen"></canvas>
2026-08-04 03:00:58 +02:00
<div id="fps">-- fps</div>
2026-08-04 02:09:54 +02:00
<script type="module" src="/app/main.ts"></script>
</body>
</html>