styling and board
This commit is contained in:
parent
45814f4665
commit
7fbb736bc8
@ -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>
|
@ -0,0 +1,14 @@
|
||||
#board tr
|
||||
{
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
#board tr th
|
||||
{
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
*
|
||||
{
|
||||
text-align: center;
|
||||
}
|
Loading…
Reference in New Issue
Block a user