Computer Applications
Related Questions
Write HTML code to create tables as shown below :
Observe the following table and write the HTML code to generate it :
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 :