How do you make a selectable list in HTML?
Abigail Rogers
Updated on April 27, 2026
Use the tag to create a selectable list. The HTML tag is used within a form for defining a select list. Specifies that on page load the drop-down list should automatically get focus.
How do I make a dropdown selection in HTML?
The element is used to create a drop-down list. The element is most often used in a form, to collect user input. The name attribute is needed to reference the form data after the form is submitted (if you omit the name attribute, no data from the drop-down list will be submitted).
What is a selection list in HTML?
The dropdown list in HTML is an important element for form building purposes or for showing the selection list from which the user can select one or multiple values. This kind of selection list in HTML is known as the Dropdown list. It is created using tag with value.
How do I select multiple options from a drop-down list in HTML?
Press and hold Ctrl Key and select more than one item from the list.
What is selection list?
Selection lists contain a complete list of values available to the user for a given attribute or parameter, on a view. A selection list enables you to select the appropriate attribute or parameter value from a list.
How to create a list box in HTML?
Here’s how to use it: Go to Insert > Form Items > List Box. This opens the Insert List Box window. Enter a name for the list box. This will appear in your form results. Enter your list items. Click Add to add more item-value pairs to your list. Select the desired alignment from the provided options. Click OK.
What is select Tag in HTML?
The HTML tag represents a control for selecting amongst a set of options. The tag is used with the tag to produce a list of options that the user can choose from. The element can also be used for grouping those items.
What are the different tags in HTML?
Generally speaking, there are two kinds of tags – opening tags: and closing tags: . The only difference between an opening tag and a closing tag is the forward slash “/”. You label content by putting it between an opening tag and a closing tag.