InterviewSolution
Saved Bookmarks
| 1. |
Given below is HTML code. Rewrite the correct code underlining all the corrections done. < cl type = "A'' start = "D">< li > Bake in oven for an hour< li > Remove from oven< li > Serve |
|
Answer» <ol type= "A" start = "D"> <li>Bake in oven for an hour</li> <li>Remove from oven</li> <Ii>Serve</li> </ol> |
|