Reset: It is a good idea to include one
of these for each form where users are entering data. It allows the surfer to
clear all the input in the form.
•
•<INPUT
TYPE=“RESET”>
Reset
buttons have the following attributes:
•TYPE: reset.
•VALUE: determines the text label on the
button, usually Reset.
Example on Reset 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>
<STRONG><font
size=5>Press Here to submit the data:</font></STRONG><BR>
<INPUT
TYPE="submit" VALUE="SubmitData">
<INPUT
TYPE="RESET" VALUE="Reset">
</FORM>
Output
Comments
Post a Comment