Saved Bookmarks
| 1. |
Write the HTML code for the following table.SubjectMarkPhysics40ScienceChemistry35Biology48 |
|
Answer» <html> <head> <title> </title> </head> <body> <table border="1"> <tralign=”center”> <td colspan=2>Subject<td>mark </tr> <tralign=”center"> <td rowspan=3>Science <td>Physics <td>40 </tr> <tr align=”center”> <td>Chemistry <td>35 </tr> <tralign=”center”> <td>Biology <td>48 </tr> </table> </body> </html> |
|