CLOSE

Help Us Help You

This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.

Select Tag

The <select> tag is used to hold one or a group of <option> tags. It is used to create drop down lists and is commonly used in forms.

<select name="options">
    <option>Option 1</option>
    <option>Option 2</option>
    <option>Option 3</option>
</select>

Attributes

  • form - Defines what form this belongs to.
  • multiple - Allows for multiple options to be selected at once.
  • name - The name of the drop down list.
  • required - Requires and option to be selected before form submission.

Copyright 2016 Step By Step HTML. All Rights reserved.