How to Add Reset Button in HTML Form Step by Step

How to Add Reset Button in HTML Form Step by Step

How to Add Reset Button in HTML Form Step by Step


What is the Reset Button form TAg  HTML

HTML Reset Button in html form use to clear all the input fields and return them to their default values. When the user clicks the reset button, form data back to the original state.

Syntax :- 

<input type ="reset" value="reset">

How to Add Reset Button in HTML Form Step by Step

program 


<!DOCTYPE html>

<html>

<body>

<h2>Reset Button</h2>

<p>Reset button that will be reset
all form values to their default values </p>

 <form action="/action.asp">

 First Name :<input type="text"
name="firstname" value="Surya"><br>

 Last name :<input type="text"
name="lastname" value="Rad><br><br>

 <input type="submit" value="Submit">

<input type="reset">

</form>

<p>If you change the input values
and then click the "Reset"
button,<br> the form-data will
be reset to the default values.</p>

</html>


How to Add Reset Button in HTML Form Step by Step

Explain Program

Step 1 ]  

<!DOCTYPE html>

  • Declares that the document is an HTML5 document.
Step  2]  

<html> & <body>

  • Root and body of the HTML page. The content of the page goes inside <body>.

Step 3]  

<h2>Reset Button</h2>

  • Displays a heading "Reset Button" in bold and larger text.

Step 4] 

<p>Reset button that will reset all form values to their default values.</p>

  • A paragraph that describes what the reset button will do.

Step 5] 

<form action="/action.asp">

  • This creates a form. When submitted, the form data is sent to the server at /action.asp.

Step 6] 

First Name: <input type="text" name="firstname" value="Surya">

  • A text field named firstname, with default value Surya.

Last Name: <input type="text" name="lastname" value="Rad">

  • A text field named lastname, with default value Rad.

Step 7] 

<input type="submit" value="Submit">

  • A submit button. When clicked, it sends the form data to /action.asp.

Step 8] 

<input type="reset">

A reset button. When clicked, it clears all user-entered values in the form and resets them to their default values
 
How to Add Reset Button in HTML Form Step by Step
 output


How to Add Reset Button in HTML Form Step by Step


Related Post:-

html form pattern attribute
html frame tag
html table attribute


 

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

html script tag attributes

CSS text-emphasis-color Property

HTML Input Type Submit Syntax and Example

CSS Padding Property Explained

How to Display T Pattern in C with Star (*) – Step-by-Step