You are on page 1of 3

Practical No.

1[A]
Code:-
<html>
<head>
<title>Chess Board</title>
<style>
table, th, td {
border: 2px solid black;
border-collapse: collapse;
}
th, td {
background-color:white;
}
</style>
</head>
<body>
<table style="border: 1px solid black;width:500px;height:500px;">
<tr>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
</tr>

<tr>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
</tr>

<tr>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
</tr>

<tr>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
</tr>

<tr>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
</tr>
<tr>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
</tr>

<tr>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>

<tr>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
<td></td>
<td style="background-color:Black;"></td>
</tr>

</tr>
</table>
</body>
</html>

Output:-

You might also like