How to add Text Emphasizing in HTML5?

Problem:

You have texts in HTML Page. You need to emphasize some texts among this page

Solution:

Insert <em> tag around the texts which you want to emphasize. The Code:

<em>Emphasized Text</em>

Explanation: The default value of <em> is the following: em { font-style: italic; } It means that when you use <em> tag around the text it will be italic to be emphasized.