answersLogoWhite

0


Best Answer

The SELECT and OPTION tags are used to create a drop-down box in an HTML form. The SELECT tag identifies the beginning of the options list, as well as providing a way to identify the data when it's submitted to the server.

The OPTION tags contain key / value pairs that allow the developer to display various items, and associate distinct values with those items.

Here's a simple example of a SELECT box.

When the form was submitted, the developer would look for a key in the POST or GET variables called "fruit." This key would contain the value of whatever option the user had selected--in this case either "a", "b", or "c"

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

There is no HTML code that will create a drop box on your page. You need to use JavaScript, PHP, or some other programming language to do that. HTML is a formatting language, not a programming language.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

drop

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What HTML tags is used to create a drop down box in a form?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you create a drop down list of content for your webpage?

You could use the HTML <form> attribute to learn more about it have a look under the HTML section @ http://www.w3schools.com


How do you create forms using ASP and HTML?

You can use a WYSIWYG html editor to drag and drop html form controls and program their function. An html editor such as Microsoft Front Page or Adobe DreamWeaver can do these tasks.


Can you create a database with only a form?

Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.


What three tags create the body of the form in HTML?

A form can be created in HTML using the <form> tag. Inside form tag we can use elements like input, submit or reset.


Html full form?

Html is a standard markup language used to create web pages. In full form, it stands for Hyper Text Markup Language.


How do you create links in html documents?

I am going to explain how to create two forms of link because these are the two I commonly use.This form of link is if you wanted to have a link to a site already online. LINK TEXT Now to break this down for you


How do you create a form in database?

To create an online form and database, you could learn PHP, MYSQL, HTML and Javascript or alternatively try something like www.recs4free.com. This will do most of the work for you.


What is the HTML code for input student information?

You can create a form for student input information. It can create name, roll number, class, section etc.


How do you create a button in HTML?

This will create a button with the words Click Here written on it. The tag must be inside Form tags, as buttons are part of forms.


Is Slash is used to create a closing tag?

Yes. <FORM> is the opening tag whereas </FORM> is the closing tag. This </TAG> to close tags is applicable for most tages. ex: <HTML> </HTML> <BODY> </BODY> etc...


What is the correct HTML for making a drop-down list?

<select> <option value="Volvo">Volvo</option> <option value="Saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="Audi">Audi</option> </select>


How do you create a registration form using css and javascript in HTML?

Form is an HTML construct. The first part tells the server to Get or Post. To format with CSS is one thing, to make it interactive, use JavaScript. I will give a URL below: