HTML FORMS
HTML forms are set of different form elements that allow to interact with the user by your HTML web page and collect the data and information from user. HTML Form fields HTML supports certain fields to collect different information from user. These fields are as following: 1. Textbox : It is used to user allow to enter a single line text field in HTML forms. Textfield is mostly used to collect Names or any single value in forms. 2. TextArea: It is used to collect multi-line text entries in HTML forms. This field is used to accept the address field in a form. 3. Password: It is similar to the textbox field but the characters are displayed in a special symbolic form when the user enters them. As its name, it is used to collect a password from the user. 4. Radio Buttons: These fields are used to accept a single value from given multiple choices or o...