By default, the <select> tag displays one option from the selection list, along with a list arrow to view additional selection options.
To make a drop-down list, use the select element. To gather user input, the <select> element is most frequently used in forms. After the form is submitted, the name attribute is required to refer to the form data (if you omit the name attribute, no data from the drop-down list will be submitted). When a user clicks on a form element, a drop-down list of options is created using the <select> tag, allowing them to select one of the options. An option that can be chosen is defined by the <option> elements. The drop-down list's first item is always chosen by default.
More about tags https://brainly.com/question/13164785
#SPJ4