-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 808 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 808 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Game of Life Example</title>
<script src='jquery-1.10.2.min.js'></script>
<script src='script.js'></script>
</head>
<body>
<p id="machine">0000</p>
<p>|State|Current Symbol|New Symbol|Direction|New State|<br>0 0 1 r 0</p>
<textarea id="rules">0 0 1 r 0</textarea><br>
<input type="button" id="1step" value="1 Step"/>
<input type="button" id="autoStep" value="Auto Step"/>
<input type="button" id="stopStep" value="Stop Step"/>
<input type="button" id="set" value="SET Rules"/>
<br>
<input type="text" id="tapeChanger"/>
<input type="button" id="setTape" value="SET Tape"/>
<br>
<input type="text" id="newSymbolChanger"/>
<input type="button" id="setNewSymbol" value="SET New Symbol"/>
<p id="counter"></p>
</body>
</html>