- An HTML form can be submitted without a submit button.
- The <input type="text"> element is used for multiple-line text inputs.
- The <select> element allows the user to select one from a dropdown menu.
- The <textarea> element defines a single-line text input control?
- The <input type="password"> element displays the characters as asterisks for security.
- The <input type="radio"> element allows the user to select only one of a limited number of choices.
- The <input type="checkbox"> element allows the user to select multiple options from a list of
checkboxes.
- The <input type="submit"> element defines a submit button that submits the form data to a server.
- The method attribute of an HTML form is used to specify the HTTP method used to submit the form data.
- The post method is more secure than the get method.
- The <input type="hidden"> element is used to define a hidden input field.
- Try to explain the function of the form element.
- Explain types of button controls in HTML.
- Explain the difference between put and post method in form.
- List and explain the most important attributes of an input control.(at least 5)
- List and explain the most commonly used input type controls in a form.(at least 5)