xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to create a reset button for a form in an HTML page
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Reset a form in HTML Page</title> <!-- Title of the page--> </head> <body> <h1>Example of Reset a Form in a Webpage</h1> <hr /> <h3>This is a reset button in a form.</h3> <p>Write something in the textbox and click the reset button to see the effect.</p> <form> <input type="text" /> <!--<input> is used to create reset button defining type as "reset". --> <input type="reset" name="mydate" value="Reset" /> </form> <p><input> with 'type="reset"' is used to create reset button. 'type="reset"' defines the input element as a reset button. </p> </body> </html>