optionelement
The option element represents a single option in a list of choices for a select element or a datalist. In a native select, options appear as items in a drop-down; in a datalist, options act as suggested values for the associated input.
Attributes and content: The value attribute defines the option’s submission value. If value is omitted, the
Behavior with forms: When a form is submitted, the value of the selected option is sent under
Accessibility and parsing: Options participate in keyboard navigation and are announced by assistive technologies in order.
Example: Within a select, an option can be represented as <option value="1">One</option>. When multiple selections are