Respuesta :
Answer:
Unordered list
Explanation:
Given
The html tag needed to create the given list
The list is not properly presented; however, the list in a properly presented question is as follows:
- red
- blue
- green
The code to generate the above output is:
<ul>
<li>red</li>
<li>blue</li>
<li>green</li>
</ul>
When a list is generated using the <ul> ... </ul> tag, such list is an unordered list.
Answer:
ul
Explanation:
The < ul > tag is used to create an unordered list.