CBSE Class 10 Computer Applications
Question 120 of 125
HTML II — Images, Links and Tables — Question 34
Back to all questions 34
Question Question 34
Write HTML code to produce following table :

<HTML>
<BODY>
<TABLE frame = "void" rules = "all">
<TR> <TD> A </TD> <TD> D </TD> </TR>
<TR> <TD> B </TD> <TD> E </TD> </TR>
<TR> <TD> C </TD> <TD> F </TD> </TR>
</TABLE>
</BODY>
</HTML>