tryit_yourcode See Results <!DOCTYPE html> <html> <body> <h2>The autocomplete Attribute</h2> <form action="/sample_page.php" autocomplete="on"> First name: <input type="text" name="fname"><br><br> Last name: <input type="text" name="lname"><br><br> E-mail: <input type="email" name="email" autocomplete="off"><br><br> <input type="submit"> </form> </body> </html>