-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 815 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 815 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
<!DOCTYPE html>
<html>
<head>
<title>Cellular Automata</title>
<link href="./main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="app">
<div id="form-container">
<form>
<div>One-Dimensional Cellular Automata</div>
<div>
<label id="label-rule" for="rule">Rule: 30</label><br>
<label for="rule">0</label><input id="field-rule" type="range" name="rule" min="0"><label id="label-rule-max" for="rule">255</label>
</div>
</form>
</div>
<div id="canvas-container">
<canvas></canvas>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>