Test III: Table Data Cell Rowspan & Colspan

Click on the button representing the correct set of tags that define a table structure similar to the following:

cell

cell

cell

cell

cell


<TABLE>
<TR>
<TD>
<TD>
<TR>
<TD colspan="2">
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<TR>
<TD>
<TD>
<TR>
<TD rowspan="2">
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<TR>
<TD>
<TD>
<TR rowspan="2">
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<TR>
<TD>
<TD>
<TR colspan="2">
<TD>
<TR>
<TD>
<TD>
</TABLE>