CBSE Class 10 Computer Applications
Question 55 of 125
HTML II — Images, Links and Tables — Question 5
Back to all questions 5
Question Question 5
Demonstration of colspan and headers.
<HTML>
<BODY>
<TABLE BORDER>
<TR>
<TH COLSPAN=2>Head1</TH> <TH COLSPAN=2>Head2</TH>
</TR>
<TR>
<TD>A</TD> <TD>B</TD>
<TD>C</TD> <TD>D</TD>
</TR>
<TR>
<TD>E</TD> <TD>F</TD>
<TD>G</TD> <TD>H</TD>
</TR>
</TABLE>
</BODY>
</HTML>