22 lines
512 B
HTML
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>
|