Saved Bookmarks
| 1. |
Write the HTML code to create the following table: No. of StudentsScience55Commerce60Humanities58 |
|
Answer» Sp<html> <head> <title> table creation </title> </head> <body bgcolor =”cyan"> <"table border=”1"> <tralign=”center> <th colspan=”2″>No. of Students</th> </tr> <tralign=”left”> <th>Science</th> <td>55</td> </tr> <tralign=”left"> <th>Commerce</th> <td>60</td> </tr> <tr align=”left”> <th>Humanities</th> <td>58</td> </tr> </table> </body> </html> |
|