write a c.ode in html to define ordered list in capital roman with background colour blue and title my city goa
Answers
Answered by
0
Answer:
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items will be marked with numbers by default:
Example
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Similar questions