Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | method Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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: 

  • Google Chrome
  • Edge 12 and above
  • Firefox
  • Opera
  • Safari

My Personal Notes arrow_drop_up
Last Updated : 24 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials