Computer Science, asked by sardanaurvanshi, 1 year ago

how can we make a list that lists the items with numbers?
Please let me know now​

Attachments:

Answers

Answered by navkomal
1

Answer:

Chapter Summary

Use the HTML <ul> element to define an unordered list.

Use the CSS list-style-type property to define the list item marker.

Use the HTML <ol> element to define an ordered list.

Use the HTML type attribute to define the numbering type.

Use the HTML <li> element to define a list item.

Answered by debayan2468
0

Answer:

<ol type = "1">

<li> item 1 </li>

<li> item 2 </li>

<li> item 3 </li>

Explanation:

  1. item 1
  2. item 2
  3. item 3
Similar questions