Open In App

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>

Output:

  

Supported Browsers:

Article Tags :