HTMl Drop Down


Using Drop-down list in Forms

 

When you want the site visitor to choose from list of options, you can present them with a drop-down list for selection. The drop-down list serves as a form of information capture and it is a very quick way of gathering input from site visitors as they do not have to spend time typing details out in the form. 

 

In order to specify the drop-down list you need to use the Select Tag. This tag has an opening tag and a closing tag

 

Here is how you use it in HTML

 

<select>

<option>Logo Designing</option>

<option> Brochure Designing</option>

<option> Web Designing </option>

</select>