Saved Bookmarks
| 1. |
Create an HTML page as shown below using lists.The recipe for preparation1. The ingredients• 100g flour• 10g sugar• 1 cup water• 2 egg• Salt and pepper2. The procedureA. Mix dry ingredients thoroughlyB. Pour in wet ingradientsC. Mix for 10 mtsD. Bake for 1 hr at 100 degree C temperature <HTML> |
|
Answer» <HTML> <HEAD> <TITLE> List Demo </TITLE> </HEAD> <BODY Bgcolor = “Green”> The recipe for preparation <OL> <ULtype=”disc”> <LI> 100 g flour </LI <LI> 10 g Sugar </LI> <LI> 1 cup water </LI> <LI>2egg </LI> <LI> Salt and pepper </LI> </UL> <LI> The procedure </LI> <OL TYPE =”A”> <LI> Mix dry ingredients thoroughly </LI> <LI> Pour in wet ingredients </LI> <LI> Mix for 10 mts </LI> <LI> Bake for 1 hr at 100 degree C temperature </LI> </OL> </OL> </BODY> </HTML> |
|