Go to GoReading for breaking news, videos, and the latest top stories in world news, business, politics, health and pop culture.

How to Make a Reset Button in HTML

104 4
    • 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...

Leave A Reply

Your email address will not be published.