wasm-game-of-life-www/index.html

25 lines
489 B
HTML
Raw Normal View History

2021-05-11 00:02:50 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello wasm-pack!</title>
2021-05-11 17:31:39 +02:00
<style>
body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
2021-05-11 00:02:50 +02:00
</head>
<body>
2021-05-11 21:43:24 +02:00
<canvas id="game-of-life-canvas"></canvas>
2021-05-11 00:02:50 +02:00
<script src="./bootstrap.js"></script>
</body>
</html>