added info

This commit is contained in:
AUnicornWithNoLife 2021-04-12 10:49:01 +01:00
parent c661d94a45
commit 29767a5497
2 changed files with 48 additions and 29 deletions

View File

@ -12,6 +12,9 @@
<title>Tic Tac Toe</title>
</head>
<body onload="load();">
<table id='main' class='center'>
<tr>
<th>
<table id='board'>
<tr>
<th>
@ -47,5 +50,15 @@
</th>
</tr>
</table>
</th>
<th id='info'>
<h2>Score: </h2>
<br>
<h3>X Go</h3>
</th>
</tr>
</table>
</body>
</html>

View File

@ -17,6 +17,12 @@ button
font-style: bold;
}
.center
{
margin-left: auto;
margin-right: auto;
}
*
{
background-color: black;