20.
Which HTML tag is used to create an ordered (numbered) list?
<p>
<ol>
<li>
<ul>
Correct: B
The <ol> tag is used to create an ordered (numbered) list in HTML. Each list item is defined by the <li> tag and the entire list is wrapped in the <ol> tag. The numbers displayed for each list item are automatically generated by the browser.