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;
}
by dima_k
<p>Some text with font styling</p>
/* Apply italic appearance of a text */
p {
font-style: italic;
}
/* Apply bold appearance of a text */
p {
font-weight: bold;
}