Skip to content

Instantly share code, notes, and snippets.

@debabrata100
Last active February 10, 2018 18:54
Show Gist options
  • Save debabrata100/71db4b61362d343f9ace43811a7ae457 to your computer and use it in GitHub Desktop.
Save debabrata100/71db4b61362d343f9ace43811a7ae457 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tic Tac Toe</title>
<script src="game-lib.js" type="text/javascript"></script>
</head>
<body>
<div id="game_container">
</div>
<script type="text/javascript">
Game.init({
container:"game_container",
cellHeight: 100,
cellWidth: 100
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment