game/index.html
2022-07-29 16:21:08 +02:00

22 lines
512 B
HTML

<!doctype html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<style>
* {
padding: 0px;
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script type="module">
import init from './pkg/game.js';
async function run() { await init(); }
run();
</script>
</body>
</html>