-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.8 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
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Isaac Ramírez">
<meta name="author-email" content="[email protected]">
<title>Conway's Game of Life</title>
<link rel="stylesheet" href="css/vendor/foundation.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<h1>Conway's Game of Life</h1>
<div class="container">
<div class="game">
<div class="generations">Generations: <span>0</span></div>
<div class="balanced"><span></span></div>
<div class="board"></div>
</div>
<div class="controls">
<label for="size">Size:
<input type="number" name="size" value="50" min="10" max="100" step="10">
</label>
<label for="speed">Speed:
<input type="number" name="speed" value="50" min="10" max="200" step="10">
</label>
<label class="multicolor" for="multicolor">Multicolor:
<input type="checkbox" name="multicolor">
</label>
<button class="button" type="button" name="new">New</button>
<button class="warning button" type="button" name="evolve" disabled>Evolve</button>
<button class="success button" type="button" name="play" disabled>Play</button>
<button class="alert button" type="button" name="stop" disabled>Stop</button>
</div>
</div>
<script src="js/vendor/jquery.js" charset="utf-8"></script>
<script src="js/cell.js" charset="utf-8"></script>
<script src="js/board.js" charset="utf-8"></script>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>