forked from ewen/game_of_life
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro.html
25 lines (25 loc) · 852 Bytes
/
intro.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>life 2</title>
<link href="./main.css" type="text/css" media="screen" rel="stylesheet">
</head>
<body>
<div class="intro-left">
<div id="title">
<a href="./index.html"><</a>
life <span>2</span>
</div>
</div>
<div class="intro-right">
<div class="intro-text">
This project is using the idea of
<a href="http://en.wikipedia.org/wiki/Conway's_Game_of_Life">Conway's Game of Life</a>
and based on <a href="https://github.com/ewen/">Ewen Cumming</a>'s javascript implimentation.
<br>
The project is then modified to explore other form of artificial lives. The source code can be found in <a href="https://github.com/cwhy/life2">github</a>.
</div>
</div>
</body>
</html>