About

A form contains elements which are inputs to the server. These inputs may include text fields, checkboxes, radio-buttons, submit buttons, hidden inputs (hidden from the agent filling the form) and more.

A form element also is characterized by the action that will be undertaken on submit and the method used to make the request (HTTP GET or POST).

Standard HTML form declaration is,

<form action="form_action" method="submit_method">
.
{input elements, here you can declare any html 
 tag and all you input fields that can be text fields, 
 checkboxes, radio-buttons, submit buttons and more }
.
</form> 

Reference

  • Forms Wikipedia Article
history|show excerpt|excerpt history