The HTML <option> option element is used to define the options that are available in a <select> or <datalist> element. You can also choose to group certain options together using the <optgroup> element if needed.
value - specify the value for the option
Possible Values: "you designate a value string"
selected - specify this option to be the pre-selected default starting option
Possible Values: "selected"
disabled - specify that the option should be disabled
Possible Values: "disabled"
label - specify a label for the option
Possible Values: "you designate a label string"
global attributes - global core attributes
See: list of global attributes
global event handlers - global event handler attributes
See: list of global event handlers