Test V: Table Border & Width

Click on the button representing the correct set of tags that define a table structure similar to the following (note that the width is the entire width of the browser window, and the border thickness is 3 pixels):

cell

cell

cell

cell


<TABLE>
<TR
border="3"
width="100%">
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE
border="3"
width="100%">
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<BORDER="3">
<WIDTH="100%">
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE
border="3"
width="100">
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>