Defines an option of a select form field. The HTML <option> tag is used for defining option items within a list.
This element can be used in conjunction with the <select> or <##_tag-datalist_##> elements. Also see <optgroup> tag for grouping your option items.
<select name="furniture"> <optgroup label="Kitchen"> <option>Chair</option> <option>Table</option> </optgroup> <optgroup label="Living"> <option>Sofa</option> <option>TV</option> </optgroup> </select>