HTML Text Formatting Tutorial - Emphasized Text
Description:
How to emphasize text in an html page.
Code:
<html>
<body>
This is normal text.
<em>This is emphasized text.</em>
This is normal and <em>this is emphasized</em> text.
</body>
</html>
Play with the code:
See working example:
Explanation:
To make emphasized text in an html page, surround the text you want emphasized in the <em></em> tags.
See Also:
HTML: Html, Body, EM
|