-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 2.2 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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>OO Game of Life</title>
<style>
#canvas {
display: inline;
}
</style>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css" />
</head>
<body class="w-100 avenir bg-white">
<article class="w-100 tc pv5">
<canvas id="canvas" width="610" height="610" >
Your browser does not support the canvas element.
</canvas>
</article>
</article>
<article>
<div class="ph4 ph5-m ph6-1">
<div class="pv5 f4 f2-ns measure center">
<h1 class="fw6 f1 f1 w-100 black-70 mt0 mb3">Conway's Game of Life</h1>
<p class="db 1h-copy black-70 serif-fw1 mv0 f4 f3-m f2-1 measure baskerville">
<a class="f4 fw6 black link hover-hot-pink" href="https://en.wikipedia.org/wiki/Conways_Game_of_Life">Conway's Game of Life</a> is a great way to learn a programming language. This was done in 2015 when I was getting ramped up on Javascript.
This is the second iteration which uses an objected oriented appproach. You can see it on <a class="f4 fw6 black link hover-hot-pink" href="https://github.com/kalimar/golv2">GitHub</a>.
</p>
</div>
</div>
</article>
<footer class="pa3 pa4-ns">
<div class="tc pb3">
<a class="link gray f6 f5-ns dib mr3 hover-hot-pink" href="https://github.com/kalimar" title="GitHub">GitHub</a>
<a class="link gray f6 f5-ns dib mr3 hover-hot-pink" href="https://kalimar.github.io/golv2/" title="Game Of Life">Game Of Life</a>
<a class="link gray f6 f5-ns dib mr3 hover-hot-pink" href="https://kalimar.github.io/mapbox/" title="Mapbox">Mapbox</a>
<a class="link gray f6 f5-ns dib mr3 hover-hot-pink" href="https://www.linkedin.com/in/kalimarmaia/" title="LinkedIn">LinkedIn</a>
<a class="link gray f6 f5-ns dib mr3 hover-hot-pink" href="http://novacodecoffee.com" title="Nova Code Coffee">Nova Code & Coffee</a>
</div>
</footer>
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/board.js"></script>
<script type="text/javascript" src="scripts/cell.js"></script>
<script type="text/javascript" src="scripts/index.js"></script>
</body>
</html>