<html>
<head>
<title>Project 7</title>
<style type="text/css">
td.color1
{
background: red;
}
td.color2
{
background: blue;
}
</style>
</head>

<body>
<table border="3" width="50%" cellpadding ="30">
<tr>
<td class="color1">&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
<td class="color2">&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td class="color1">&nbsp</td>
<td class="color2">&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td class="color2">&nbsp</td>
<td class="color1">&nbsp</td>
<td >&nbsp</td>
</tr>
<tr>
<td class="color2">&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
<td class="color1">&nbsp</td>
</tr>
</table>
</body>
</html>