Computer Science, asked by jottamtokotagu4471, 11 months ago

Set the start value of an ordered list in HTML?

Answers

Answered by Rememberful
4

<ol> tag is used to write ordered list in HTML.

<li> specifies list item.

" Start " attribute specifies that from where it have to start.

For example,

<ol type ="I" start="5">

<li> @adimmortal </li>

<li> @kristynna </li>

</ol>

This will give the following output :

5. @adimmortal

6. @kristynna

Similar questions