The autofocus attribute is a boolean attribute. When present, it specifies that an <input> element should automatically get focus when the page loads. An example is given below
<!DOCTYPE html> <html> <body> <form action = "/new.php"> First Name: <input type = "text" name = "fname" autofocus><br> Last Name: <input type = "text" name = "lname"><br> <input type="submit"> </form> </body> </html>