What is an ordered list and unordered list in HTML??
From computer subject.....
Answers
Answered by
2
HTML List Tags
TagDescription<ul>Defines an unordered list<ol>Defines an ordered list<li>Defines a list item<dl>Defines a description list
TagDescription<ul>Defines an unordered list<ol>Defines an ordered list<li>Defines a list item<dl>Defines a description list
Answered by
2
An ordered list, created using the <ol> tag, and each list item starts with the <li> tag. Ordered list contain information where order should be emphasized.
The list items in ordered lists are marked with numbers.
ExampleTry this code »
<ol> <li>Mix ingredients</li> <li>Bake in oven for an hour</li> <li>Allow to stand for ten minutes</li></ol>
— The output of the above example will look something like this:
Mix ingredientsBake in oven for an hourAllow to stand for ten minutes
Hope uh got ur answer..
pls mark it as brainliest
courtesy:- Google baba
The list items in ordered lists are marked with numbers.
ExampleTry this code »
<ol> <li>Mix ingredients</li> <li>Bake in oven for an hour</li> <li>Allow to stand for ten minutes</li></ol>
— The output of the above example will look something like this:
Mix ingredientsBake in oven for an hourAllow to stand for ten minutes
Hope uh got ur answer..
pls mark it as brainliest
courtesy:- Google baba
aatif5:
Thanku so much dear
Similar questions