Horje
How to create HTML <em> Elements

The HTML <em> element defines emphasized text. The content inside is typically displayed in italic.

Tip: A screen reader will pronounce the words in <em> with an emphasis, using verbal stress.


Example of HTML <em> Elements

See the Example
index.html
Example: HTML
<p>This text is normal.</p>
<p><em>This text is emphasized.</em></p>

Full Example of HTML <em> Elements

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p><em>This text is emphasized.</em></p>
</body>
</html>

Output should be:

Full Example of HTML <em> Elements





Related Articles
HTML Text Formatting HTML Formatting
HTML Formatting Elements HTML Formatting
How to create HTML <b> and <strong> Elements HTML Formatting
How to create HTML <strong> Elements HTML Formatting
How to create HTML <i> Elements HTML Formatting
How to create HTML <em> Elements HTML Formatting
How to create HTML <small> Element HTML Formatting
How to create HTML <mark> Element HTML Formatting
How to create HTML <del> Element HTML Formatting
How to create HTML <ins> Element HTML Formatting
How to create HTML <sub> Element HTML Formatting
How to create HTML <sup> Element HTML Formatting

Single Articles
Example of HTML <em> Elements HTML Formatting
Full Example of HTML <em> Elements HTML Formatting

Category :
Web Tutorial
Sub Category :
HTML Formatting
Uploaded by :
Admin


Read Article
https://horje.com/learn/1434/reference