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>

Advertisements