-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 910 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 910 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<title>Game of Life</title>
</head>
<body>
<div class="container-fluid text-center">
<div class="row content">
<div class="grid">
<canvas id="canvas" height="500" width="500" ></canvas>
</div>
<div class="btns">
<button type="button" class="btn btn-primary" id="start">Start</button>
<button type="button" class="btn btn-danger" id="stop">Stop</button>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./lib/Game.js"></script>
<script src="./lib/Grid.js"></script>
<script src="./lib/index.js"></script>
</body>
</html>