Files
lets-code/snake/index.html
2022-05-17 00:38:03 +02:00

40 lines
720 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Snake</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
html {
font-size: 200%;
text-align: center;
}
#root {
border: 1px solid grey;
}
.field {
width: 1rem;
height: 1rem;
line-height: 1rem;
text-indent: -.2rem;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module">
import init from "./pkg/snake.js";
async function main() {
await init();
}
main();
</script>
</body>
</html>