Saved Bookmarks
| 1. |
Write the HTML code for creating the following table:Item – Price – Qty.Soap – 15 10 Book – 23 12 Pen – 10 14 |
|
Answer» <html> <head> <title> table </title> </head> <body> <table bonder=1><tr> <th>ltem</th> <th>Price</th> <th>Qty</th> </tr> <tr> <td>Soap</td> <td>15</td> <td>10</td> </tr> <tr> <td>Book</td> <td>23</td> <td>12</td> </tr> <tr> <td>pen</td> <td>10</td> <td>14</td> </tr> </table> </body> </html> |
|