Which of the following HTML code snippets would produce the following web page:

Apples
Bananas
Oranges

A. <ul>
Apples
Bananas
Oranges
</ul>

B. <ol>
Apples
Bananas
Oranges
</ol>

C. <ul>
<li>Apples</li>
<li>Bananas</li>
<li>Oranges</li>
</ul>

D. <ol>
<li><Apples</li>
<li>Bananas</li>
<li>Oranges</li>
</ol>

1 answer

To produce a web page with the list:

Apples
Bananas
Oranges

The correct HTML code snippet is:

C.

<ul>
    <li>Apples</li>
    <li>Bananas</li>
    <li>Oranges</li>
</ul>

This option uses <ul> for an unordered list and <li> for each list item, which will appropriately display the items as a list.

Option A is incorrect because it does not use <li> tags for the items, so it wouldn’t render them as a list.

Option B is correct in using <ol> (ordered list) but still requires <li> tags to be valid, hence it would not display correctly without them.

Option D has incorrect syntax as it uses < before "Apples", which makes it invalid HTML.