-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
17 lines (17 loc) · 830 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<button class="start--button">Start The Game Of Life</button> <button class="stop--button">Reset</button> <br/>
<span>Enter a value to change the size of the grid.</span><input type="text" class="size--input">
<p>Once you have a grid size you like, simply click on a cell to bring that cell to life! Once you get a group of live cells start the game and see what happens!</p>
<p>Hint: If all the cells just immediately die, click the reset button and try creating bigger packs of cells!</p>
<script src="scripts.js"></script>
</body>
</html>