CBSE Class 10 Computer Applications
Question 6 of 125
HTML II — Images, Links and Tables — Question 6
Back to all questions 6
Question Question 5(a)
Write HTML code to create tables as shown below :

<HTML>
<BODY>
<TABLE BORDER = "1">
<TR> <TD> 1 </TD> <TD ROWSPAN = "2" VALIGN = "TOP"> 2 </TD><TD> 3 </TD> </TR>
<TR> <TD> 4 </TD> <TD> 6 </TD></TR>
<TR> <TD> 7 </TD> <TD> 8 </TD> <TD> 9 </TD></TR>
</TABLE>
</BODY>
</HTML>