Computer Applications

Help Anju choose the correct HTML code to generate a numbered list, with numbering starting from capital letter C.

  1. <OL TYPE="a" START="A">
  2. <OL TYPE="A" START="3">
  3. <OL TYPE="a" BEGIN="A">
  4. <UL TYPE="A" START ="l">

HTML Advanced Features

5 Likes

Answer

<OL TYPE="A" START="3">

Reason — To generate a numbered list starting from "C", we can use the following HTML code:

<OL TYPE="A" START="3">

Here, Type attribute specifies the type of numbering i.e. "A" and Start attribute specifies the starting value i.e. "3".

Answered By

2 Likes


Related Questions