Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Disable Spell Checking</title> </head> <body> <form> <p> <input type="text" spellcheck="false"> </p> <p> <textarea spellcheck="false"></textarea> </p> <button type="reset">Reset</button> </form> </body> </html>