HTML | input autofocus Attribute
The HTML <input> autofocus Attribute is used to specify that the input field must automatically get focused when the page loads which means the cursor will blink to the specified input field. It is a Boolean attribute.
Syntax:
<input autofocus>
Example: This Example illustrates the use of autofocus attribute in <input> element.
HTML
<!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
Please Login to comment...