-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
25 lines (22 loc) · 730 Bytes
/
game.html
File metadata and controls
25 lines (22 loc) · 730 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conway's Game of Life</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="header">
<h3>Conway's Game of Life</h3>
<div class="controls">
</div>
</div>
<div id="canvasContainer" class="grid-container"></div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="src/Grid.js"></script>
<script src="src/Game.js"></script>
<script src="src/Controls.js"></script>
</body>
</html>