Write HTML code to create tables as shown below :
23 Likes
<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>
Answered By
14 Likes
Observe the following table and write the HTML code to generate it :