-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1008 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
27
28
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="life.js"></script>
<script type="text/javascript" src="patterns.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<div id="wrapper">
<h1>The [JavaScript] Game of Life</h1>
<div id="board"></div>
<div id="controls">
<div id="start-stop-controls">
<input id="start" class="button" type="button" value="Start" />
<input id="stop" class="button" type="button" value="Stop" style="display:none;" />
</div>
<div id="reset-controls">
<label>Initial Pattern:
<select id="pattern"></select>
</label>
<input id="reset" class="button" type="button" value="Reset Game" />
</div>
</div>
</div>
</body>
</html>