Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | input autofocus Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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
My Personal Notes arrow_drop_up
Last Updated : 26 Feb, 2023
Like Article
Save Article
Similar Reads
Related Tutorials