Skip to content

Instantly share code, notes, and snippets.

@awongh
Created June 16, 2015 13:32
Show Gist options
  • Save awongh/05282384156f7317693e to your computer and use it in GitHub Desktop.
Save awongh/05282384156f7317693e to your computer and use it in GitHub Desktop.
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1>tic tac toe</h1>
<div id="board">
<div><button id="a1" class="cell">x</button><button id="a2" class="cell">o</button><button id="a3" class="cell">x</button></div>
<div><button id="b1" class="cell">x</button><button id="b2" class="cell">x</button><button id="b3" class="cell">o</button></div>
<div><button id="c1" class="cell">x</button><button id="c2" class="cell">o</button><button id="c3" class="cell">o</button></div>
</div>
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment