forked from MarioQuiroga/Conway-s-GameOfLife-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
executable file
·67 lines (41 loc) · 1.56 KB
/
game.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GameOfLife-Engine</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<header>
<h1>Conway's-GameOfLife-Engine</h1>
</header>
<div id="content" class="container">
<div>
<button class="btn btn-primary" id="play">Play</button>
<button class="btn btn-primary" id="stop">Stop</button>
<button class="btn btn-primary" id="reset">Reset</button>
<label class="content-right">Generation: </label> <label class="content-right" id="generation">0</label>
</div>
<div class="span8 main" id="game-div">
<script src="js/utils.js"></script>
<script src="js/start.js"></script>
</div>
</div>
</body>
</html>
<!--
<div class="game-div">
<title>Game Example</title>
<script src="js/game.js.example.js"></script>
<div>
<span id="score">0</span>
</div>
<button onclick="Game.postScore()">Incrementar Puntaje y Enviar al servidor</button>
</div>
-->