Computer Science, asked by meghasingh4947, 1 month ago

write the syntax for adding drop down list to the form​

Answers

Answered by AnmolJigarChawla
1

Explanation:

The <select> tag is used to create a drop-down list in HTML, with the <option> tag. Used to give a name to the control which is sent to the server to be recognized and get the value. This can be used to present a scrolling list box. If set to "multiple" then allows a user to select multiple items from the menu.

Answered by krishnendu212
0

Answer:

Create the. element first.

Give the select element an ID. You'll use this ID to refer to the element in co de.

Add an option element to the select element.

Give each option a value.

Indicate the text the user will see between the and tags.

Add as many options as you want.

Similar questions