Submit: Every set of Form tags requires a Submit button. This is the element causes the browser to send the names and values of the other elements to the CGI Application specified by the ACTION attribute of the FORM element . <INPUT TYPE=“SUBMIT”> Submit has the following attributes: § TYPE: submit. § NAME : value used by the CGI script for processing. § VALUE: determines the text label on the button, usually Submit Query. Example on Submit Button <FORM Action="URL" method="get"> First Name: <INPUT TYPE="TEXT" Size=25 name=" firstName "><BR> Family Name: <INPUT TYPE="TEXT" Size=25 name=" LastName "><BR> <BR> <FONT Color=red> Press Here to submit the data:<BR> <INPUT TYPE="submit" VALUE=" Submit Data " > </FORM> Output ...