game-of-life/index.html
2020-05-26 10:46:14 -07:00

20 lines
No EOL
570 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>Enter valid GitHub user handle above to seed with contribution calendar</p>
<p>Touch below to toggle seed cells alive or dead</p>
<canvas id="game-field" width="500" height="300"></canvas>
</main>
</body>
</html>