The <select> tag is used to make a drop down list of options. User can select value from drop-down list and send it to the web server. The <select> tag has attribute name which is the name of the drop-down list. The list of options create by <option> tag.
Example of Code
<select name="myName">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
Output
