Saved Bookmarks
| 1. |
Write an HTML code to create the following table. PAY - ROLL EMPNO NAME SALARY101ABIN15,000102SINI25,000103ANU20,000 |
|
Answer» <html> <head> <title> table </head> <body bgcolor=”cyan”> <table border=”1″> <tralign=”center”> <th colspan=”3″>PAY ROLL </th > </tr> <tralign=”center”> <th>EMPNO</th> <th>NAME</th> <th>SALARY</th> </tr> <tralign=”center”> <td>101<br>102<br>103</td> <td>ABIN<br>SINI<br>ANU</td> <td>15,000<br>25,000<br>20,000</td> </tr> </table> </body> </html> |
|