8.
What is the correct HTML to create a drop-down list?
<list>
<dropdown>
<input type="list">
<select>
Correct: D
The correct HTML tag for creating a drop-down list is <select>. The <select> tag is used to define a drop-down list in HTML. It is usually followed by one or more <option> tags to define the options in the list.