HTML Select Generator

The "Select" tag in HTML is used to create a drop-down list of options for the user to select from. It is a form element that allows the user to choose one or more options from a list.

Preview

Properties

Options

Code

<label htmlFor="carMake">My favorite car make is </label>
<select id="carMake" name="cars" value="bmw">
  <option value="audi">Audi</option>
  <option value="bmw">BMW</option>
  <option value="benz">Mercedez-Benz</option>
</select>