<em><strong>
Browser |
|
---|---|
Type |
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.
Example
<p>Normal text, <em>Emphasized text,</em> Normal text,</p>
<p>Normal text, <strong>Strong text,</strong> Normal text,</p>
- Output
-
Normal text, Emphasized text, Normal text,
Normal text, Strong text, Normal text,