forked from pmav/game-of-life
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<script src="bundle.js"></script>
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<title>Conway's Game of DEATH- Javascript/Canvas Implementation</title>
</head>
<body>
<div id="wrapper">
<div id="elm-stuff"> </div>
<div id="title">
<a href=".">Conway's Game of DEATH</a>
<a id="playerName" href="."> Playing as </a>
</div>
<div class="box controls">
<div class="subtitle">Controls</div>
<form action="">
<input type="button" value="Pause (Shortcut P)" id="buttonRun" title="Key: P" />
<input type="button" value="Commit Cells (Shortcut C)" id="buttonCommit" title="Key: C" />
<input type="button" value="Restart Server" id="buttonRestart" />
</form>
</div>
<canvas id="canvas" width="2000" height="1200"></canvas>
<script src="bundle.js"></script>
</div>
</body>
</html>