mirror of
https://github.com/yishn/lets-code.git
synced 2026-04-16 03:00:29 -04:00
40 lines
720 B
HTML
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>
|