KnowledgeBoat Logo
|

Computer Applications

To start a list with alphabet 'E', which line should be used?

  1. <OL type="A">
  2. <OL type="A" start= "5" >
  3. <OL type="E" >
  4. <OL start="E" >

HTML Intro

4 Likes

Answer

<OL type="A" start= "5" >

Reason — To start a list with alphabet 'E', we write the following code:

<OL type="A" start= "5" >

Answered By

1 Like


Related Questions