CBSE Class 10 Computer Applications
Question 53 of 125
HTML II — Images, Links and Tables — Question 3
Back to all questions 3
Question Question 3
Create a basic 3x2 table.
<HTML>
<BODY>
<TABLE BORDER>
<TR>
<TD>A</TD> <TD>B</TD> <TD>C</TD>
</TR>
<TR>
<TD>D</TD> <TD>E</TD> <TD>F</TD>
</TR>
</TABLE>
</BODY>
</HTML>