Open In App

HTML method Attribute

Last Updated : 29 Aug, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML method Attribute is used to specify the HTTP method used to send data while submitting the form. There are two kinds of HTTP Methods, which are GET and POST. The method attribute can be used with the <form> element. 

Attribute Values: 

  • GET: It is the default value. In the GET method, after the submission of the form, the form values will be visible in the address bar of the new browser tab. It has a limited size of about 3000 characters. It is only useful for non-secure data not for sensitive information.
  • POST: In the post method, after the submission of the form, the form values will not be visible in the address bar of the new browser tab as it was visible in the GET method. It appends form data inside the body of the HTTP request. It has no size limitation. This method does not support bookmark the result. 

Syntax: 

<form method="get|post">

Example: This Example illustrates the use of method attribute. 

HTML
<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;"> 
    GeeksForGeeks 
    </h1>
    <h2>HTML  method Attribute</h2>
    <form id="users"
          action="#"
          method="GET" 
          target="_blank">
        First name:
        <input type="text" 
               name="fname"
               value="Manas">
        <br> Last name:
        <input type="text"
               name="lname"
               value="Chhabra">
        <br>
        <input type="submit"
               value="Submit">
    </form>
    
<p>
      After submitting the form, 
      input values are shown in the address 
      bar of the window.
      </p>

</body>
</html>

Output: 

Supported Browsers: The browser supported by HTML Method Attribute are listed below: 


Next Article

Similar Reads