8.
Which HTML tag is used to display an unordered list?
_____
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
_____
<dl> </dl>
<ul> </ul>
<ol> </ol>
<li> </li>
Correct: B
The correct HTML tag to display an unordered list is the <ul> tag. The <ul> tag stands for "unordered list" and is used to create a bulleted list of items. Each item in the list should be wrapped with the <li> tag, which stands for "list item".