Computer Applications
Which of the following tag is used to define options in a drop-down selection list ?
<select>
<list>
<dropdown>
<option>
HTML Advanced Features
2 Likes
Answer
<option>
Reason — A drop down selection list is created with SELECT and OPTION tag pair. An example is given below:
<FORM ACTION = "WWW.GMAIL.COM" METHOD = "GET">
<SELECT NAME = "STREAM">
<OPTION VALUE = "SCIENCE"> Science </OPTION>
<OPTION VALUE = "COMMERCE"> Commerce </OPTION>
<OPTION VALUE = "HUMANITIES"> Humanities </OPTION>
</SELECT>
<INPUT TYPE = "SUBMIT" VALUE = "SUBMIT" />
</FORM>
<SELECT>
tag specifies a selection drop down list and <OPTION>
tag specifies the various options available to select from.
Answered By
3 Likes
Related Questions
Tag to create password field in HTML document :
<password>
<input>
<pwd>
<pword>
HTML provides an attribute for the
<input>
tag that allows you to hide data with some designated character to make it secure.- True
- False
Which of the following restricts a user to one selection ?
- checkbox
- optionbox
- radio button
- drop down list
You can pre-select a radio button by utilizing a …………… attribute.
- select
- choice
- checked
- marked