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

View File

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