JSFiddle - React, Tailwind, and code Playground

by Mindy McAdams

HTML

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

<img src="http://placekitten.com/400/200" alt="Photo of a kitten">

<a href="http://placekitten.com/">This is a link to placekitten</a>

CSS

body {
  background: #E2F0D6;
}
h1 {
  background: #95AB63;
  color: #F6FFE0;
}
a {
    color: #95AB63;
}
a:hover {
    color: #F6FFE0;
    background: #152C73;
    text-decoration: none;
}