Form Tags
RESET
The Reset Button returns
all the form elements to their initial, default values. Basically, it allows the user to start completing the form
all over again.
Example Reset Button:
Here's the html code:
<P><INPUT TYPE="reset" VALUE="Start Over"></P>
Parts of the Reset Tag
VALUE="anytext" Optional
The Value option lets you change the name of the Reset button as it appears to the visitor.
Notes
The Reset button is not required in your forms. If you have a large form with many options, you may want to
include it. But, pressing Reset also clears all the text boxes, so be careful! If
your visitors really want to start over, they can always reload the web page.
|