game-of-life/index.html
2020-05-26 00:45:24 -07:00

19 lines
No EOL
467 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game of Life</title>
</head>
<body>
<aside id="controls">
<h1>Game of Life</h1>
<!-- insert form for fetch seed data -->
<!-- insert controls for animation -->
</aside>
<main>
<p>Touch to toggle seed cells</p>
<canvas id="game-field" width="500" height="300"></canvas>
</main>
</body>
</html>