9.
Which HTML tag should be used to display an ordered list in the following code snippet?
______
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
______
<dl> </dl>
<li> </li>
<ul> </ul>
<ol> </ol>
Correct: D
To display an ordered list, the <ol> tag should be used. The <ol> tag defines an ordered list where each list item is displayed with a number or letter.