Saved Bookmarks
| 1. |
Identify the errors in the following HTML code. Also write the correct code.<OL TYPE= “a” START= “f”> |
|
Answer» The start attribute should be assigned a numeric value. Correct code is: <OL TYPE= “a” START=6> |
|