INPUT TYPE="SUBMIT"
This is probably the most import type of input. Once the user has input the data it
is time to submit it. When the submit button is clicked, the ACTION takes place.
ACTION is indicated in the <FORM> tag. This type
of input has the following syntax:
<INPUT TYPE="SUBMIT" VALUE="text on button">
The VALUE attribute is optional. If no VALUE is specified the text on the button
will be "Submit".
I understand. What is next?