Untitled

You might also like

Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>
    <style>
        td{
            height:50px;
            width:50px;
            border-width:2px;
}
</style>
<body>
    <table style="background-color:black">
    <tbody>
      <tr>
            <td colspan="2" style="background-color: red;">&nbsp;</td>
            <td rowspan="2" style="background-color: blue;">&nbsp;</td>
</tr>
<tr>
          <td rowspan="2" height="50px" width="50px" style="background-
color: green;">&nbsp;</td>
<td style="background-color:grey;">&nbsp;</td>
    </tr>
<tr>
    <td height="50px" width="50px" colspan="2" style="background-
color:yellow;">&nbsp;</td>

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

You might also like