Loading...
HTML <em> Tag

HTML <em> Tag

In this tutorial, we will learn about em tag in HTML with the help of examples.


<em> Tag

Em tag <em> is used to define emphasized text.
The text inside the <em> tag usually render in italic.

Note : The <em> tag is work exactly same as <i> tag, but <em> tag text will pronounce with an emphasis, using verbal stress.

Syntax

<em>.....</em>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Em Tag</title>
  </head>
  <body>
    <em>This is the text inside the em tag.</em>
  </body>
</html>

Output

This is the text inside the em tag.

Global Attribute

Em Tag support all the global attributes of HTML.


Event Attribute

Em Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of <em> tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML embed Tag.

- Related Topics