Something went wrong on our end
Select Git revision
-
Will Billingsley authoredWill Billingsley authored
index.html 367 B
<!DOCTYPE html>
<html>
<title>Conway's Game of Life</title>
<h1>Conway's Game of Life</h1>
<div id="game" style="font-family: monospace; cursor: pointer;">
</div>
<div>
<button>Step</button>
</div>
<script src="gameOfLife.js"></script>
<script src="render.js"></script>
<script>
gameOfLife.emptyBoard()
render()
</script>
</html>