The <em>
tag stands for emphasis. It is used to stress a piece of text.
The <em>
tag italicizes the text as its default behaviour, as shown in the snippet below:
em {
font-style: italic;
}
The behavior of the <em>
tag can be changed by adding more CSS properties.
<em> Text goes here </em>
The code snippet below shows how the em
tag can be used in HTML:
Free Resources