Saved Bookmarks
| 1. |
Create a table with 5 types of fruit names, use headings as serial number, name and cost.ORCreate an ordered list of five fruits numbered using small Roman numerals. |
|
Answer» <html> <head> <title> table creation </title> </head> <body bgcolor =“red”> <table bonder = “1”> <tr> <th>Serial No</th> <th>Name</th> <th>cost</th> </tr> <tr> <td>1</td> <td>Banana</td> <td>Rs. 49</td> </tr> <tr> <td>2</td> <td>grapes</td> <td>Rs. 110</td> </tr> <tr> <td>3</td> <td>Apple</td> <td>Rs.180<ftd> </tr> <tr> <td>4</td> <td>Orange</td> <td>Rs.60</td> <td>5</td> <td>Mango</td> <td>Rs.40</Itd> </tr> </table> </body> </html> <html> <head> <title> Ordered list demonstration </title> </head> <body bgcolor=red; <H1> Fruits </H1> <OLType= "i"> <li>Apple</li> <li>Grapes</li> <li>Orange</li> <li>Mangoc</li> <li> Banana</li> </OL> </Body> </html> |
|