crop_rotate
Run
<!DOCTYPE html> <html lang="en"> <head> <title>HTML Forms</title> </head> <body> <h1>autofocus attribute</h1> <form action="/login.php"> <label for="fname">First name:</label> <input type="text" id="fname" name="fname" autofocus><br><br> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname" autofocus><br><br> <input type="submit"> </form> </body> </html>
HTML Forms
autofocus attribute
First name:
Last name: