game-of-life/index.html

20 lines
570 B
HTML
Raw Normal View History

2020-05-23 06:31:43 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-05-23 20:03:51 +00:00
<title>Game of Life</title>
2020-05-23 06:31:43 +00:00
</head>
<body>
2020-05-23 20:03:51 +00:00
<aside id="controls">
<h1>Game of Life</h1>
2020-05-23 20:03:51 +00:00
<!-- insert form for fetch seed data -->
<!-- insert controls for animation -->
</aside>
2020-05-25 04:32:29 +00:00
<main>
2020-05-26 17:46:14 +00:00
<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>
2020-05-23 20:03:51 +00:00
</main>
2020-05-23 06:31:43 +00:00
</body>
</html>