styling and board

This commit is contained in:
AUnicornWithNoLife 2021-04-11 16:57:02 +01:00
parent 45814f4665
commit 7fbb736bc8
2 changed files with 33 additions and 1 deletions

View File

@ -7,9 +7,27 @@
<script src='./code.js'></script>
<link rel="stylesheet" href="style.css">
<title>Tic Tac Toe</title>
</head>
<body>
<table id='board'>
<tr>
<th>X</th>
<th></th>
<th></th>
</tr>
<tr>
<th>O</th>
<th></th>
<th></th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,14 @@
#board tr
{
height: 50px;
}
#board tr th
{
width: 50px;
}
*
{
text-align: center;
}