first commit

This commit is contained in:
Jeena Paradies 2011-01-29 21:12:08 +01:00
parent 0b23cd8942
commit a275990f62
4 changed files with 140 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe</title>
<script src="js/game.js"></script>
<link rel="stylesheet" href="css/screen.css" type="text/css" media="screen">
</head>
<body onload="new TicTacToe('game')">
<div id="game"></div>
<p><a href="#" onclick="new TicTacToe('game'); return false;">New game</a></p>
</body>
</html>