HTML | <input> name Attribute
Last Updated :
12 Aug, 2022
Improve
The HTML <input> name Attribute is used to specify a name for an <input> element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript.
Syntax:
<input name="name">
Attribute Values: It contains a single value name which describes the name of the <input> element.
Example:
html
<!DOCTYPE html> < html > < head > < title > HTML Input name Attribute </ title > </ head > < body style="text-align:center;"> < h1 >GeeksForGeeks</ h1 > < h2 >HTML Input name Attribute</ h2 > < form id="myGeeks"> < input type="text" id="text_id" name="geeks" pattern="[A-Za-z]{3}" value="Manas Chhabra"> </ form > < br > </ body > </ html > |
Output:
Supported Browsers:
- Google Chrome 1.0
- Firefox 1.0
- Edge 12.0
- Internet Explorer 5.5
- Opera 12.1
- Apple Safari 1.0