B. Chess Club
Create the webpage below to welcome new members to the chess club.
The chess board should be created with a table.
<table>
<tr>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
</table>
table {
margin: auto;
border: 3px solid black;
border-collapse: collapse;
}
td {
width:
height:
}
.white {
background-color:
}
.black {
background-color:
}