KnowledgeBoat Logo
|

Computer Applications

What are HTML forms? Mention its three attributes.

HTML Advanced Features

3 Likes

Answer

HTML forms are means to collect information/data from the site visitor. Forms collect information through its elements like text fields, textarea fields, drop-down menus, radio buttons, checkboxes etc.

Three attributes of HTML forms are:

  1. name — It specifies the name of the form.
  2. action — It provides the URL of the program that receives the information from the form and processes it.
  3. method — A method attribute, specifies the type of protocol used to submit the data.

Answered By

2 Likes


Related Questions