<FORM METHOD="GET or POST" ACTION="URL">
End the form with the </FORM> tag, because otherwise you will get errors in
your HTML code. Note that you can have more than one form in a document but you
cannot have nested forms.Between the <FORM> tag and the </FORM> tag, you can have different types of input. These input tags provide the interface for the user to input data.
<INPUT TYPE="TEXT" NAME="name of variable" VALUE="value" SIZE="size" MAXLENGTH="length">
<TEXTAREA NAME="name of variable" ROWS="number of rows" COLS="number of columns">
<INPUT TYPE="RADIO" NAME="name of variable" VALUE="value of variable"> text description
<INPUT TYPE="CHECKBOX" NAME="name of variable" VALUE="value of variable"> text description
<SELECT NAME="variable name" MULTIPLE SIZE="size">
<OPTION> text description
<OPTION SELECTED> text description
<OPTION VALUE="value"> text description
</SELECT>
<INPUT TYPE="PASSWORD" NAME="name of variable" VALUE="value" SIZE="size"
MAXLENGTH="length">
<INPUT TYPE="HIDDEN" NAME="name of variable" VALUE="value">
<INPUT TYPE="RESET" VALUE=""text on button">
<INPUT TYPE="SUBMIT" VALUE="text on button">
I am ready to go to the next chapter.