html form button reset code example
Example 1: reset button html
<input type="reset" value="Reset" />
Example 2: reset submit btn style
button, input[type="submit"], input[type="reset"] {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}