-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.68 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Playground</title>
<link href="playground.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Jura' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<h2 class="title">
PLAYGROUND
<span>a 1-2 day hobby projects.</span>
</h2>
<h3> Projects included:</h3>
<ul>
<li>
<a href="Snake/index.html">Snake</a>
<p>Classic snake game using only HTML and JavaScript - no canvas included.</p>
</li>
<li>
<a href="TicTacToe/production/index.html">Tic-Tac-Toe</a>
<p>
HTML(Canvas)/ JavaScript tic-tac-toe game. Or kind of tic tac toe game, as board size and wining strike is configurable.
Game support multiplayer by using socket.io and node server.
</p>
</li>
<li>
<a href="Snakes&Ladders/index.html"> Snakes and Ladders </a>
<p>
Snake and ladders two player dice board game.
Be first to 100 to win
</p>
</li>
<li>
<a href="GameofLife/index.html">Conway's Game of Life</a>
<p> More about game http://en.wikipedia.org/wiki/Conway's_Game_of_Life</p>
</li>
<li>
<a href="Puzzle/index.html">Number puzzle game</a> :
<p>Order the number in the board to win the game. Size of the board is configurable.</p>
</li>
</ul>
</div>
</body>
</html>