Tools, FAQ, Tutorials:
HTML 'em' Tag/Element
What Is an HTML "em" Tag/Element?
✍: FYIcenter.com
An "em" element is an inline element that you can use to
specify text with a normal emphasis.
Here are basic rules about "em" elements:
Here is a good example of "em" and "i" elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>EM and I Elements</title> </head> <body> <p>All <em>programmers</em> are playwrights and all <i>computers</i> are lousy actors.</p> </body> </html>
If you save the above document as em_and_i.html, and view it with Internet Explorer, you will see that contents in both "em" and "i" elements are displayed in italic as shown below:
2017-04-28, 2538🔥, 0💬
Popular Posts:
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
What is EPUB 3.0 Metadata "dcterms:modified" property? EPUB 3.0 Metadata "dcterms:modified" is a req...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...