Computer Science, asked by privatex8333, 1 year ago

To create a combo box (drop down box) which tag will you use?

Answers

Answered by aditya1984
6
<select>
<option></option>
</select>
Answered by skyfall63
3

Answer:

We can use “<select> tag” to create combo box.

Explanation:

Combo box is used to display the drop down list of the options from which we can able to select.

We can use two tags, by using “<select> tag” we can create the combo box and <option> tag is used inside the “<select> tag” that we can able to display the list of options.

“<select> tag” is supported in all the web browsers.

Syntax:

<select>

<option value=”name”>name</option>

</select>

Similar questions