JSFiddle - React, Tailwind, and code Playground

by Dhanck

HTML

<html lang="es">
<h3>Basic Spell Checker</h3>
<textarea spellcheck="true"></textarea>

<p><strong>Note:</strong> The spellcheck attribute is not supported in Internet Explorer 9 and earlier versions.</p>

</html>

CSS

body{
    font-family:century gothic;
}
p{
    font-size:12px;
    color:grey;
}
textarea{
    width:600px;
    height:300px;
}
h3{
    color:grey;
}