JSFiddle - React, Tailwind, and code Playground

by John Schulz

HTML

<p class="titlecase">This Is Title Case</p>
<p class="lowercase">this is all lowercase</p>
<p class="nonsense">does this look like lowercase?</p>

CSS

* {
    font-family: Consolas, "Liberation Mono", Courier, monospace;
}

.nonsense {
    font-style: italic;
}

p {
    font-size: 3em;
}