JSFiddle - React, Tailwind, and code Playground

by davidpauljunior

HTML

<a href="#">HELLO</a>
<!--<form>
    <input type="password"/>
</form>-->

CSS

body { font-size: 100px; }
a { transition: all 0.3s ease-out; }

a:hover {
    color: orange;
}