html tag em code example
Example 1: em tag in html5
basically italic
<p>You <em>have</em> to hurry up!</p>
Example 2: em tag in html
em {
font-style: italic;
}
basically italic
<p>You <em>have</em> to hurry up!</p>
em {
font-style: italic;
}