-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 1002 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="life.css" media="screen" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Electrolize' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="life.js" type="text/javascript"></script>
</head>
<body>
<div class="buttons">
<h1>The Game Of Life</h1>
<button class="btn" id="stop">Stop</button>
<button class="btn" id="step">Step</button>
<button class="btn" id="resume">Resume</button>
<button class="btn" id="reset">Reload</button>
<p>Generations: <span class="right" id="generations"></span></p>
<p>Births:<span class="right" id="births"></span></p>
<p>Living:<span class="right" id="living"></span></p>
<p>Deaths:<span class="right" id="deaths"></span></p>
</div>
<br />
<canvas id="c">
</canvas>
</body>
</html>