Open In App

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. 




<!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: 



HTML input autofocus Attribute

Supported Browsers: The browser supported by HTML <input>autofocus Attribute are listed below:

Article Tags :