Open In App

HTML | method Attribute

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: 



Syntax: 

<form method="get|post">

Example: This Example illustrates the use of method attribute. 






<!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: 


Article Tags :