CBSE Class 10 Computer Applications Question 8 of 125

HTML II — Images, Links and Tables — Question 8

Back to all questions
8
Question

Question 5(c)

Write HTML code to create tables as shown below :

Write HTML code to create table. Application Oriented Questions. HTML Images, Links & Tables, Computer Applications Code 165 Sumita Arora Solutions CBSE Class 10.
Answer
<HTML>
<BODY>
<TABLE BORDER = "1">
<TR> <TD ROWSPAN = "3"> Column 1 </TD> <TD> Row 1 </TD> </TR>
<TR> <TD> Row 2 </TD> </TR>
<TR><TD> Row 3 </TD> </TR>
</TABLE>
</BODY>
</HTML>