Submit and Reset

Radio buttons is used to select only one option at a time.


Internal Link

This is used to creat link within the page


Difinition lists

This is used to creat definition lists


Input Tag

This is used to input text in a form.


Form Tag

A Form is a collection of data in specific fields. Forms are used to build interactivity in the web page. This is a non-empty tag.


HTML Documents

All HTML documents must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>.


Form Tag

A Form is a collection of data in specific fields. Forms are used to build interactivity in the web page. This is a non-empty tag.
Attribute of form are

1.ACTION
This is used to specify the e-mail address to which the information is to be sent or the URL of the CGI program which will use and process the information.

2.METHOD
This specifies that the information field in the form should be posted to the URL which is given in ACTION attribute. There are only two possibe value for the METHOD attributei.e GET or POST. The default value is GET.

Syntax
<FORM METHOD=POST ACTIOM="http://database.com">