

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 Questions & Answers
- 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 an inline sub window in HTML?
- How do we include a section in an HTML document?
- How do we include a table caption in HTML?
- How do we include attributes for table columns in HTML?
- Include keyboard text in HTML
- How do we include the legal number intervals for an input field 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 create underlined text in HTML?
- How do we create preformatted text in HTML?
- How do we display a text area in HTML?
Advertisements