HTML | <input> name Attribute
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:
<!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 > |
chevron_right
filter_none
Output:
Supported Browsers:
- Google Chrome 1.0
- Firefox 1.0
- Edge 2.0
- Opera 1.0
- Apple Safari 1.0