Open In App
Related Articles

HTML | method Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 24 Aug, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials