The EM element defines emphasized text, and the STRONG element defines strong text.
<em>emphasized text</em>
<strong>strong text</strong>
EM element : The text is displayed in italic font.
STRONG element : The text is displayed in bold font.
The style of the text can be changed with CSS. Please see the "Related Document" for details on CSS.
<p>Normal text, <em>Emphasized text,</em> Normal text,</p> <p>Normal text, <strong>Strong text,</strong> Normal text,</p>
Normal text, Emphasized text, Normal text,
Normal text, Strong text, Normal text,