game-of-life/www/index.html
2020-10-11 21:46:15 +01:00

26 lines
535 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>game of life</title>
<style>
body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<!-- <pre id="game-of-life-canvas"></pre> -->
<canvas id="game-of-life-canvas"></canvas>
<script src="./bootstrap.js"></script>
</body>
</html>