How to Make a Reset Button in HTML
- 1). Open the webpage that contains your form in Notepad or a text editor.
- 2). Locate the closing "</form>" tag in the code. If the webpage contains many lines of code, press "Ctrl+F" on your keyboard and enter "</form>" in the "Find What" field to make finding this tag easier.
- 3). Add this code above the closing "</form>" tag to make your "Reset" button:
<input type="reset" value="Reset Form" />
Change the text of the "value" attribute to whatever text you want to appear on the button.
Source...