Reset Buttons:
Reset buttons are use to reset the forms in Html. Sometime users put wrong information then the users don't be worry of removing whole the fields and fill them again just press the reset button and whole the form back to their original state. That's very useful for the user.
Html Code:
Reset Button in Action:
Now we are giving some action for your understanding what reset button done don't panic we give some form tags and other just visit Forms in Html you will also learn how to make it.
Reset Button Code:
Now just fill some information and press reset it will give you action what it done.
Reset buttons are use to reset the forms in Html. Sometime users put wrong information then the users don't be worry of removing whole the fields and fill them again just press the reset button and whole the form back to their original state. That's very useful for the user.
Html Code:
<input type="reset" value="Reset" />
<input type="reset" value="Start Over" />
Html Code:<input type="reset" value="Start Over" />
Reset Button in Action:
Now we are giving some action for your understanding what reset button done don't panic we give some form tags and other just visit Forms in Html you will also learn how to make it.
Reset Button Code:
<form action="xyz.php" method="post">
First Name: <input type="text" size="20" maxlength="12" /><br />
Last Name: <input type="text" size="24" maxlength="24" /><br />
<input type="reset" value="Reset" />
</form>
Reset Button Example:First Name: <input type="text" size="20" maxlength="12" /><br />
Last Name: <input type="text" size="24" maxlength="24" /><br />
<input type="reset" value="Reset" />
</form>
Now just fill some information and press reset it will give you action what it done.
Comments
Post a Comment