Computer Applications
Write HTML code to create tables as shown below :
HTML Advanced Features
9 Likes
Answer
<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>
Answered By
5 Likes
Related Questions
Write output of the following HTML code.
<html> <head> <title> Table </title> </head> <body> <table BORDER = "1"> <tr> <th ALIGN = "center" rowspan = "3"> ONE </th> <th> TWO </th> <th>THREE </th> </tr> <tr> <td> Rose </td> <td> Lily </td> </tr> <tr> <td ALIGN = "center"> Pansy </td> <td ALIGN = "center" colspan = "2"> Dahlia </td> </tr> </table> </body> </html>
Write HTML code to create tables as shown below :
Write HTML code to create tables as shown below :
Observe the following table and write the HTML code to generate it :