-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 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
<!DOCTYPE html>
<html>
<head>
<title>Conway's Game of Life in Javascript</title>
<link rel="stylesheet" type="text/css" href="style.css?version=3" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
</head>
<body style="background-color: #002b36;">
<noscript>You need to enable JavaScript</noscript>
<canvas>Your browser need to support canvas element.</canvas>
<button class="btn btn-halo btn-start">Start</button>
<dialog open>
<h3 class="title"><a href="https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" target="_blank">Conway's Game of Life</a> in Javascript</h3>
<p class="desc">
This is a browser based implementation <br>
of "Conway's Game of Life" principles.<br>
You can interract with the visualisation by clicking on the canvas.
</p>
<button class="btn btn-flat btn-ready" onclick="game.start()">Ready</button>
</dialog>
<script src="game.js?version=0.0.2"></script>
<a href="https://github.com/julesbou/game-of-life/blob/master/game.js" target="_blank" class="source">
View source code on Github
</a>
</body>
</html>