-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
21 lines (19 loc) · 1.09 KB
/
main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="script.js"></script>
<link href='http://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Conway's Game of Life by @manfrin</title>
</head>
<body>
<div class="header">
<h1>Conways Game of Life </h1>
<p><a href="http://en.wikipedia.org/wiki/Conway's_Game_of_Life">Conway's Game of Life</a> is a simple set of rules for making cell automata. Each tic, a cell lives if it has 2 or 3 neighoring living cells, it dies otherwise ('starvation' or 'overcrowding'). A cell is born if it has exactly 3 neighbors and is not currently living. </p>
<p>This page will seed a new board every pageload. If things stop or are uninteresting, just hit refresh.</p>
<p>Hacked together one evening by <a href="http://github.com/manfrin">@manfrin</a>. A repo of the code can be found <a href="https://github.com/manfrin/game_of_life">here</a>.</p>
</div>
<div class="container" id="board">
</div>
</body>
</html>