Forms in HTML AND ITS ATTRIBUTES:- • Forms are very important part of any webpage for accepting data from a user. Form is collection of checkbox, radio button, textbox, submit button etc. (Data which user fill in it is called input) • Form in HTML are created with the help <form> tag. It is container tag with closing and opening tag. Attributes used with form element. • <Form> tag can have following attributes 1. Name : It is used for assigning a name to a form. 2. Action : this attribute specifies a path or a location to submit data. 3. Method : It is used for type of method in which data is submitted. This attribute has two values GET and POST. i) GET method : The default method of submitting form data is GET in whi...