Example
Create a drop-down list with four options:Teach Yourself by BH24 HTML Editor Tool!<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
The <select> tag is supported in all major browsers.
Definition and Usage
The <select> element is used to create a drop-down list.The <option> tags inside the <select> element define the available options in the list.