Reset button is usually used with submit button. Purpose of using reset button is to initialize all user-input values. This means that
each form field will be set to its initial value when the form is loaded i.e, either ""(null) or the value specified in the value attribute of the form field.
Reset button can be created as :
<input type="Reset" name="Name" value="valueof the button">
Attributes of Reset Button:
Name: Specifies the name of the object through which it can be referenced. value:Specifies the value of the Reset button. this will be displayed on the Reset button.