

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML Spell Check
The HTML Spell Check is used to identify grammar or spelling mistakes in HTML text fields. The property returns the color resolution of the visitor’s screen.
Syntax
Following is the syntax −
<tagname spellcheck=”true | false”>
Example
Let us see an example of HTML Spell Check −
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #FBAB7E; background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%); text-align: center; } </style> <body> <h1>HTML Spell Check</h1> <textarea rows="5" cols="20" spellcheck="true" placeholder="Enter your message here"></textarea> </body> </html>
Output
Now enter any message in the white textarea with some spelling or grammar mistake −
- Related Questions & Answers
- How to turn off spell checking (grammar correction) for HTML form elements?
- Stickers to Spell Word in C++
- Program to check we can spell out the target by a list of words or not in Python
- Using “SPELL AMOUNT” function to convert amounts in ABAP
- Count ways to spell a number with repeated digits in C++
- Check whether the content of an element is editable or not in HTML
- HTML DOM HTML Object
- HTML <html> Tag
- Difference between HTML and HTML 5
- HTML Basics
- HTML Charset
- HTML Doctypes
- HTML Editors
- HTML Attributes
- HTML Comments
Advertisements