first commit
This commit is contained in:
parent
0b23cd8942
commit
a275990f62
4 changed files with 140 additions and 0 deletions
12
games/tic-tac-toe-js/index.html
Normal file
12
games/tic-tac-toe-js/index.html
Normal 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>
|
Reference in a new issue