Last Updated : 12 Aug, 2022
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:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4