Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-make-Emphasized-formatting-using-the-em-element-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<p>This text is normal.</p>

<p><em>This text is emphasized.</em></p>

</body>
</html>

Output :

This text is normal.

This text is emphasized.