Test VI: Table Headers

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

Header 1

Header 2

cell

cell

cell

cell


<TABLE>
<TR header="Header 1", "Header 2">
<TD>
<TD>
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<TH>Header 1
<TH>Header 2
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<TR>
<TD header="Header 1">
<TD header="Header 2">
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>


<TABLE>
<TR>
<TH>Header 1
<TH>Header 2
<TR>
<TD>
<TD>
<TR>
<TD>
<TD>
</TABLE>