Paragraph
We use the WordPress Core “paragraph” block wherever possible. There are some legacy non-block paragraphs across the site from before the Block Editor days, particularly in Posts.
Text can be bolded or italicized in the editor.
This paragraph uses our site styling.
HTML:
<p><em>This</em> <strong>paragraph</strong> uses our site styling.</p>
CSS:
font-family: Roboto, sans-serif;
font-size: 1rem;
line-height: 1.4em;
margin: 24px 0;
color: #333;
Bold CSS:
font-weight: 700;
Italic CSS:
font-style: italic;