Skip to content

Commit

Permalink
TicTacToe Challenge
Browse files Browse the repository at this point in the history
Create a Tic Tac Toe board from basic HTML and CSS
  • Loading branch information
martkyle committed Jun 1, 2018
1 parent 3a92830 commit 373eca2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Empty file added tic-tac-toe.css
Empty file.
30 changes: 30 additions & 0 deletions tic-tac-toe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe</title>
<link rel="stylesheet" type="text/css" href="tic-tac-toe.css">
</head>
<body>

<h1>Tic Tac Toe</h1>

<table>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>

</body>
</html>

0 comments on commit 373eca2

Please sign in to comment.