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
|
|
|
<h1>Game of Life</h1>
|
|
|
|
<aside id="controls">
|
|
|
|
<!-- insert form for fetch seed data -->
|
|
|
|
<!-- insert controls for animation -->
|
|
|
|
</aside>
|
|
|
|
<main id="game-field">
|
|
|
|
<!-- insert n*n grid where n is odd -->
|
|
|
|
</main>
|
2020-05-23 06:31:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|