
- 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 do we include an emphasized text in HTML?
Use the <em> tag in HTML to include emphasized text. The tag formats the text in a document.
Example
You can try to run the following code to learn how to implement <em> tag in HTML −
<!DOCTYPE html> <html> <head> <title>HTML em Tag</title> </head> <body> <p>Simply Easy <em>Learning</em>.</p> </body> </html>
- Related Articles
- How do we include big text in HTML?
- How do we include an anchor in HTML?
- How do we include the direction of text display in HTML?
- How do we include a section in an HTML document?
- How do we include an inline sub window in HTML?
- How do we include a table caption in HTML?
- How do we include attributes for table columns in HTML?
- How do we include the legal number intervals for an input field in HTML?
- Include keyboard text in HTML
- How do we create underlined text in HTML?
- How do we create preformatted text in HTML?
- How do we add bold text in HTML?
- How do we set text font in HTML?
- How do we display inserted text in HTML?
- How do we display a text area in HTML?

Advertisements