JSFiddle - React, Tailwind, and code Playground

by dima_k

HTML

<p>Some text with font styling</p>

CSS

/* Apply italic appearance of a text */
p {
    font-style: italic;
}

/* Apply bold appearance of a text */
p {
    font-weight: bold;
}