CBSE Class 10 Computer Applications Question 119 of 125

HTML II — Images, Links and Tables — Question 33

Back to all questions
33
Question

Question 33

Write code to produce following HTML table :

Write code to produce this HTML table. Theoretical Questions. HTML Images, Links & Tables, Computer Applications Code 165 Sumita Arora Solutions CBSE Class 10.
Answer
<HTML>
<BODY>
<TABLE>
<TR> <TD ROWSPAN = "2"> A </TD> <TD> B </TD> </TR>
<TR> <TD> C </TD> </TR>
</TABLE>
</BODY>
</HTML>