Open In App

HTML | <button> formmethod Attribute

The HTML button formmethod 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. This Attribute is only used with the Button type=”submit”.

Syntax:



<button type="submit" formmethod="get|post">

Attribute values:

Example: This Example illustrate the use of formmethod Attribute in Button Element. 






<!DOCTYPE html>
<html>
 
<head>
    <title>
      Button Formmethod attribute
    </title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
      GeeksforGeeks
    </h1>
    <h4>
      HTML Button Formmethod Attribute
    </h4>
    <form action="#" method="post"
          enctype="multipart/form-data">
        First name:
        <input type="text" name="fname">
        <br><br>
        Last name:
        <input type="text" name="lname">
        <br><br>
        Address:
        <input type="text" name="Address">
        <br><br>
        <button type="submit" formmethod="GET">
          submit using GET
        </button>
        <br>
        <br>
        <button type="submit" formenctype="text/plan"
                formmethod="POST">
          submit using POST
        </button>
    </form>
</body>
 
</html>

Output:

  

Supported Browsers: The browsers supported by HTML <button> Formmethod attribute are listed below:


Article Tags :