
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to use Emphasized formatting in HTML?
The <em> tag is used to define emphasized text. The content inside em tag is typically displayed in italic. The HTML <em> tag should be used inside <body> tag.
The <em> tag is used to separate the text from the rest text of the content. The content inside em tag is typically displayed in italic. You can change this behavior with CSS property.
Syntax
Following is the syntax for <em> tag.
<em>The text…</em>
Example
Following is the example program for <em> tag.
<!DOCTYPE html> <html> <body> <em>Tutorials point</em> </body> </html>
Example
In the following example below we used <em> tag used on a particular text inside the <p> tag to add a semantic importance.
<!DOCTYPE html> <html> <head> <title>HTML em tag</title> </head> <body> <h1>Tutorial</h1> <p>Learn <em>Website Development</em> with ease.</p> </body> </html>
Example
We can use this <em> tag inside the HTML elements. Following is the example program for <em> tag used inside the <p> tag.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for<em>Delhi Land and Finance.</em> <br>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
- Related Articles
- How to use small formatting in HTML?
- HTML DOM emphasized object
- How to use the tag for keyboard input formatting in HTML?
- How do we include an emphasized text in HTML?
- How to use formatting with printf() correctly in Java?
- HTML Text Formatting
- Explain HTML formatting in PowerShell?
- How do we do variable formatting using the tag in HTML?
- How to use blockquote in HTML?
- How do we do computer output formatting using the tag in HTML?
- How to use the tag in HTML?
- How to use the tag in HTML?
- How to use the tag in HTML?
- How to use autocomplete attribute in HTML?
- How to use formnovalidate attribute in HTML?

Advertisements