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, 5368👍, 0💬
Popular Posts:
How do we enable SQL Cache Dependency in ASP.NET 2.0? Below are the broader steps to enable a SQL Ca...
How To Increment Dates by 1? - MySQL FAQs - Introduction to SQL Date and Time Handling If you have a...
How To Enter a New Row into a Table Interactively? - Oracle DBA FAQ - Introduction to Oracle SQL Dev...
What is V model in testing? V model map’s the type of test to the stage of development in a project....
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, ...