Back to Concepts
<select>
A drop-down list.
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.
Live Example & Code
Preview Output
<select name="cars" id="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
</select>