KnowledgeBoat Logo
|

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