Created
June 16, 2015 13:32
-
-
Save awongh/05282384156f7317693e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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