Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is an EM Tag/Element
What Is an EM Tag/Element? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags
✍: 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:

2007-05-12, 5475👍, 0💬
Popular Posts:
What are shared (VB.NET)/Static(C#) variables? Static/Shared classes are used when a class provides ...
When does the compiler not implicitly generate the address of the first element of an array? Wheneve...
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...
How do you open an SSH connection to a remote box? ????