HTML | <input> autofocus Attribute
The HTML <input> autofocus Attribute is used to specify that the input field must get automatically get focus when the page loads. It is a Boolean attribute.
Syntax:
<input autofocus>
Example: This Example that illustrates the use of autofocus attribute in <input> element.
<!DOCTYPE html><html> <head> <title> HTML | <input>autofocus Attribute </title></head> <body style="text-align:center"> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> HTML | <input>autofocus Attribute </h2> Name: <input type="text" autofocus> <br> <br> <!-- Assign id to the Button. --> <button id="GFG"> Submit </button> <br></body> </html> |
Output:
Supported Browsers: The browser supported by HTML | <input>autofocus Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari


.png)