This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
GGS/games/tic-tac-toe-js/index.html
Jeena Paradies a275990f62 first commit
2011-01-29 21:12:08 +01:00

12 lines
No EOL
336 B
HTML

<!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>