-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Conway's Game of Life</title>
<meta name="description" content="An implementation of Conway's Game of Life to commemorate his passing.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="stage">
<h1>
Conway's Game of Life.
</h1>
<p>
LOADING
</p>
</div>
<div id="controls">
<button id="toggle">STOP</button>
</div>
<div>
<p>Stop the simulation to edit the board. Play the simulation to run the Game of Life.</p>
<p> </p>
<p>Two interviews by <a href="https://en.wikipedia.org/wiki/John_Horton_Conway" target="blank">John Conway</a> (R.I.P.) on Numberfile:</p>
<p><a href="https://www.youtube.com/watch?v=R9Plq-D1gEk" target="blank">Inventing Game of Life</a></p>
<p><a href="https://www.youtube.com/watch?v=E8kUJL04ELA" target="blank">Does John Conway hate his Game of Life?</a></p>
<p> </p>
<p><a href="https://github.com/ekarademir/game-of-life">Source Code</a></p>
</div>
<script src="main.js"></script>
</body>
</html>