Computer Applications
Identify error(s) in the following HTML code and write the correct code.
<OL Type= "a" Start= "d">
HTML Intro
38 Likes
Answer
The error in the given code is that the value of start attribute should be numeric. Thus, for the list to start with 'd', the value of start attribute must be set to '4'.
The correct code is as follows:
<OL Type= "a" Start= "4">
Answered By
22 Likes
Related Questions
Write an HTML code to create the following bulleted list.
- MS Word
- MS Excel
- MS PowerPoint
- MS Access
Find the errors in the following HTML code and write the correct code.
<UL Style: Square> <LI> Water Bottles <LI> Lunch Box <LI> Handkerchief </OL>Write a short note on web browser.
Differentiate between Block-level elements and Text-level elements.