Open In App

HTML | <form> name Attribute

Last Updated : 22 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <form> name Attribute is used to specify the name of a form Element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript. 

Syntax: 

<form name="name"> 

Attribute Values: It contains a single value name which describes the name of the <form> element. 

Example: 

html
<!DOCTYPE html>
<html>

<body style="text-align:center;">
    <h1 style="color:green;"> 
    GeeksForGeeks 
</h1>

    <h2>HTML Form name Attribute.</h2>
    <form id="users" action="#" name="Geeks">
        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>
</body>

</html>

Output:

  

Supported Browsers:

  • Google Chrome
  • Firefox
  • Edge 12 and above
  • Internet Explorer 
  • Opera
  • Apple Safari

Next Article

Similar Reads