-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (29 loc) · 1.13 KB
/
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
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="author" content="Abdel Halim Bouguedra">
<meta name="viewport" content="width=device-width minimum-scale=1 maximum-scale=1">
</head>
<body>
<div class="controls">
<i id="shuffle" title="random population" class="icon-magic"></i>
<i id="reset" title="clear" class="icon-trash"></i>
<i id="fb" title="slow down" class="icon-fast-backward"></i>
<i id="play" title="play / pause" class="icon-play"></i>
<i id="ff" title="increase speed" class="icon-fast-forward"></i>
<i id="brush" title="paint" class="icon-brush selected"></i>
<i id="erase" title="erase" class="icon-cancel-outline"></i>
<div id="display" class="display">
<span id="gen">generation: 0</span>
<span id="speed">speed: 1x</span>
</div>
</div>
<div id="container" class="board"></div>
<script src="D3.js"></script>
<script src="script.js"></script>
</body>
</html>