Advertisements
Advertisements
Question
Discuss in detail about HTML form controls.
Answer in Brief
Solution
Value of type attribute | Description |
Text | Create a Text Box. The element used to get all kind of text input such as name, address etc., |
Password | Similar as Text box. But, while entering data, the characters are appearing as coded symbols such as asterisks. |
Checkbox | A check box is an element appearing like a small square box. When the user dick on the square a tiny tick mark will appear inside the square. This element is used to select multiple options. |
Radio Button | Radio button is used to select any one of the multiple options from the list. This element looks like a small circle, when the user select an item, a tiny dot will appear within the circle. If the user selects another option, previously selected option will be deselected. This means, user can select any one of the given option form a group. |
Reset | It is a special command button used to dear all the entries made in the form. |
Submit | It is also a special command button used to submit all the entries made in the form to the backend server. |
Button | This is a standard graphical button on the form used to call functions on click. |
shaalaa.com
HTML Forms
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
In HTML form <input type=”text”> is used to ______.
Which attribute of form tag helps in client-side validation?
What does fopen() function do in PHP?
How PHP files can be accessed?
Identify which is not a server side application language.
Differentiate check box and Radio button.
Write the features Form Handling.
Write short notes on File handling.
Explain Form Handling methods.
Explain the concept of Submit and Reset buttons in HTML forms.