-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Scully's Game of Life</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="headerContainer">
<header>
<img src="http://usaopoly.com/sites/default/files/brand_logo/life_2014_logo.png" alt="Game of Life Logo" height="100" width="300">
</header>
</div>
<div id="canvasContainer">
<canvas id="canvas"></canvas>
</div> <!-- end of canvasContainer -->
<div id="buttonsContainer">
<div id="buttons">
<button id="step">Step</button>
<button id="run">Run</button>
<button id="stop">Stop</button>
<button id="clear">Clear</button>
</div>
</div>
<script src="js/bundle.js"></script>
</body>
</html>