-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 2.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Game Of Life</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://pbs.twimg.com/profile_images/588790281966850049/Xr9ia_DB_400x400.png">
</head>
<body id="body">
<div class="container">
<div id="game-of-life"></div>
<div id="link">
<a href="https://github.com/modouaicha023"><img
src="https://cdn-icons-png.flaticon.com/512/2175/2175377.png" alt="github"></a>
<a href="https://www.linkedin.com/in/modouaicha023/"><img
src="https://cdn-icons-png.flaticon.com/512/4138/4138173.png" alt="linkedin"></a>
</div>
<h1 id="generation"></h1>
<div class="grid zoom-area"></div>
<form id="formControl">
<label for="rows"> Rows
<input type="number" min="1" max="200" name="rows" id="rows" value="50">
</label>
<label for="columns"> Columns
<input type="number" min="1" max="200" name="columns" id="columns" value="50">
</label>
<label for="speed"> Speed
<input type="number" min="0.1" max="10" name="speed" id="speed" value="1" step="0.1">
</label>
<label for="rateRandomCells">Random Cells(%)
<input type="number" min="10" max="50" name="rateRandomCells" id="rateRandomCells" value="30">
</label>
<label for="zoom"> Zoom
<input type="range" name="zoom" id="zoom" min="10" max="100" step="10" value="50">
</label>
</form>
<div id="command">
<button id="reset">
Reset
</button>
<button id="clear">
clear
</button>
<button id="play">
Play
</button>
<button id="stop">
Stop
</button>
<button id="random">
Random
</button>
</div>
</div>
<script src="script.js"></script>
<script src="style.js"></script>
<script src="headerTextStyle.js"></script>
</body>
</html>