Computer Science, asked by sonal515, 1 year ago

which attribute allows you to change the style of number in an ordered list


tejasgupta: HTML Tags...

Answers

Answered by tejasgupta
7

Hi. The type attribute of the numbered list ( < ol > ) is used to change the style of number in an ordered list.

< ol type = "1" > will use a numbered list like

  1. Item 1
  2. Item 2
  3. Item 3 ...and so on.

type = "i" will use small roman numbers; I will use capital roman numbers; a and A will use small and capital alphabets respectively.

Hope it helps.

Answered by prateek1381
4

Answer:

Type attribute allows us to change the style of numbers in an ordered list..i.e....

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

<LI> Apples <LI> ORANGES <LI> Grapes

<\OL>

Similar questions