More information on select element: https://developer.mozilla.org/en-US/d...
At today's video we will look at select HTML input. Sometimes it is called "select box" or "combo box". This element allows users to choose one option from a dropdown list of predefined options. It's commonly used in forms for things like selecting a country, a state, or a product from a list of available options.
When a user selects an option, the value associated with that option is submitted as part of the form data.
There is an option which changes the behavior of select input. This is a `multiple` attribute. When we are adding this attribute to select element, the behavior and the view of the element changes. User now can choose multiple options. When user selects multiple options, all of them will be added to the form data on submit.