Computer Applications
Giving examples, write the difference between a text box and a drop-down list.
HTML Advanced Features
5 Likes
Answer
| S. No. | Textbox | Drop-down list |
|---|---|---|
| 1. | A Textbox allows a user to enter alphanumeric data that is a combination of characters and numbers. | A drop-down list displays a list of options from which the user can select an item. |
| 2. | For eg, <FORM> Name: <INPUT TYPE = "TEXT"> </FORM> | For eg, Gender: <FORM> <SELECT NAME = "GENDER"> <OPTION VALUE = "MALE"> Male </OPTION> <OPTION VALUE = "FEMALE"> Female </OPTION> </SELECT> </FORM> |
Answered By
2 Likes
Related Questions
"Radio buttons let a user select one of a limited number of choices". Give an example showing the use of a radio button in HTML forms.
Write the difference between the colspan and rowspan attributes of an HTML table and give one example of each.
"CSS comprises of style rules that are interpreted by the browser and then applied to the corresponding elements in your document." Illustrate the use of Property and Value style rules in CSS.
"Open Source refers to something that is publicly accessible, and therefore, can be modified and shared by anyone." What is open source software? Write the difference between open source and free software.