Forms are the interactive part of the web page. They are used to take user’s input in different ways. These inputs are taken using various controls. The data collected by these controls can beused for processing, storing etc.
<form>
<!-- Other from tags/controls-->
</form>
How to use?
To take input through controls <input> tag is used in the way mentioned below:
<input type=" " name=" " value=" ">
The "type" attribute of input element can be various types, which defines information field.
The “name” attribute is the name given to the control which is used to access the value entered by the user
The “value” attribute is the value to be displayed on the control given which is default and can be replaced.