0
How do you keep list elements in an HTML 5 file?
Make it straight
3 Answers
+ 4
<ol>
<li>Items</li>
<li><a href= "#" >Contact us</a></li>
</ol>
+ 2
Mohammed Alsubaie ordered list is listed with numbers ,alphabets or roman numerals.
Unordered lists are listed with bullets.
0
Mohammed Alsubaie
There are two types of lists
1.ordered 2.unordered
Ex for ordered
<ol>
<li>car</li>
<li>bus</li>
</ol>
Ex for unordered
<ul>
<li>plate</li>
<li>spoon</li>
</ul>