EM HTML

HTML <em> Tag To emphasize a specified text within a sentence or a phrase, the HTML <em> tag is used. It thus provides semantic meaning to the text. The text is displayed in the italic form on the browser. Syntax: <em>Important Content</em> Example: <!DOCTYPE html> <html> <body> <em>HELLO WORLD!!</em><br> <strong>HELLO WORLD!!</strong><br> <code>HELLO WORLD!!</code><br> <samp>HELLO WORLD!!</samp><br> … Read more