-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 959 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
<html>
<head>
<title>Game of Life</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="life.js"></script>
</script>
</head>
<body>
<div id="container">
<div id="life">
<div id="title"><h1>Game of Life</h1>By Jonatan Juárez</div>
<ul id="board"></ul>
<div id="panel">
<label>Dead cells</label><span id="dead"></span>
<label>Live cells</label><span id="live"></span>
<label>Generation</label><span id="gen"></span>
<input id="start" class="button" type="button" onclick="javascript: life.init();" value="Start" />
<input id="stop" class="button" type="button" onclick="javascript: life.stop();" value="Stop" disabled/>
</div>
</div>
</div>
</body>
</html>