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 :
<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>