HTML | <form> name Attribute
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:
<!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
- Opera
- Apple Safari