JSFiddle - React, Tailwind, and code Playground
by Mitch Canter
HTML
<a class="demobutton" href="#">Hello World!</a>
CSS
.demobutton{
background: black;
display: inline-block;
color: white;
text-decoration: none;
padding: 12px;
border-radius: 12px;
font-family: "Arial", Helvetica, sans-serif;
}
.demobutton:hover{
background: #09f;
}