Subscribe Now

Receive alert message from us when new articles submitted to our site for free.

Enter Your Name
Enter Your E-Mail

Sponsors

Internet Marketing
Business Letter
Nursing job opportunities


Categories




Sign Up Here

Home / Computer Programming / CSS


Print | Send To Friends | Add To Favorites | Comment

Introduction To Cascading Style Sheets

By: Mitchell Harper

Article Word Count: 872 words  [Comments (0)]
Total Views: 148 Views



CSS (Cascading Style Sheets) have been around for a while now,
and act as a complement to plain old HTML files. Style sheets
allow a developer to separate HTML code from formatting rules
and styles. It seems like many HTML beginners’ under-estimate
the power and flexibility of the style sheet. In this article,
I’m going to describe what cascading style sheets are, their
benefits, and two ways to implement them.

--------------------------------------- Cascading whats?
---------------------------------------

Cascading Style Sheets…that’s what! They’re what paint is to
canvas, what topping is to ice cream… they complement HTML and
allow us to define the style (look and feel) for our entire site
in just one file!

Cascading style sheets were introduced to the web development
world way back in 1996. They get their name from the fact that
each different style declaration can be “cascaded” under the one
above it, forming a parent-child relationship between the
styles.

They were quickly standardized, and both Internet Explorer and
Netscape built their latest browser releases to match the CSS
standard (or, to match it as closely as they could).

So, you’re still asking what a style sheet exactly is? A style
sheet is a free-flowing document that can either be referenced
by, or included into a HTML document. Style sheets use blocks of
formatted code to define styles for existing HTML elements, or
new styles, called classes.

Style sheets can be used to change the height of some text, to
change the background color of a page, to set the default border
color of a table…the list goes on and on. Put simply though,
style sheets are used to set the formatting, color scheme and
style of an HTML page.

Style sheets should be used instead of the standard , ,
and tags because:

- One style sheet can be referenced from many pages, meaning
that each file is kept to a minimum size and only requires only
extra line to load the external style sheet file

- If you ever need to change any part of your sites look/feel,
it can be done quickly and only needs to be done in one place:
the style sheet.

- With cascading style sheets, there are many, many page
attributes that simply cannot be set without them: individual
tags can have different background colors, borders, indents,
shadows, etc.

Style sheets can either be inline (included as part of a HTML
document), or, referenced externally (Contained in a separate
file and referenced from the HTML document). Inline style sheets
are contained wholly within a HTML document and will only change
the look and layout of that HTML file.

Open your favorite text editor and enter the following code.
Save the file as stylesheet.html and open it in your browser:

Cascading Style Sheet Example < itle><br /> <style> h1 { color: #636594; font-family: Verdana; size: 18pt; }<br /> </style> </head> <body> <h1>This is one big H1 tag!</h1> </body><br /> </html> <br /> <br /> When you fire up your browser, you should see the text "This is<br /> one big H1 tag!" in a large, blue Verdana font face.<br /> <br /> Let’s step through the style code step by step. Firstly, we have<br /> a pretty standard HTML header. The page starts with the <html><br /> tag followed by the <head> tag. Next, we use a standard <title><br /> tag to set the title of the page we are working with. <br /> <br /> Notice, though, that before the <head> tag is closed, we have<br /> our <style> tag, its contents, and then the closing </style> tag.<br /> <br /> <style> h1 { color: #636594; font-family: Verdana; size: 18pt; }<br /> </style> <br /> <br /> When you add the style sheet code inline (as part of the HTML<br /> document), it must be bound by <style> and </style> tags<br /> respectively. Our example is working with the <h1> tag. We are<br /> changing three attributes of the <h1>’s style: the text color<br /> (color), the font that any <h1> tags on the page will be<br /> displayed in (font-family), and lastly, the size of the font<br /> (size). <br /> <br /> The code between the { and } are known as the attributes. Our<br /> sample code has three. Try changing the hexadecimal value of the<br /> color attribute to #A00808 and then save and refresh the page.<br /> You should see the same text, just coloured red instead of blue.<br /> <br /> --------------------------------------- An example of an<br /> external style sheet ---------------------------------------<br /> <br /> External style sheets are similar to internal style sheets,<br /> however, they are stripped of the <style> and </style> tags, and<br /> need to be referenced from another HTML file to be used. <br /> <br /> Create a new file called “mystyle.css” and enter the following<br /> code into it:<br /> <br /> h1 { color: #a00808; font-family: Verdana; size: 18pt } <br /> <br /> Next, create a HTML file and name it external.html. Enter the<br /> following code into external.html:<br /> <br /> <html> <head> <title> External Style Sheet Reference Example <<br /> itle> <link rel="stylesheet" type="text/css" href="mystyle.css"><br /> </head> <body> <h1>This is one big H1 tag!</h1> </body> </html> <br /> <br /> As mentioned above, you can see that the actual code in<br /> mystyle.css is exactly the same as it was in the inline example.<br /> In our HTML file, we simply place a <link> tag in the <head><br /> section of our page. The rel=”stylesheet” attribute tells the<br /> browser that the link to the external file is a style sheet. The<br /> type=”text/css” attribute tells the browser that mystyle.css is<br /> a text file containing css (cascading style sheet) declarations.<br /> Lastly, the href=”mystyle.css” attribute tells the browser that<br /> the actual file we want to load is mystyle.css. <br /> <br /> --------------------------------------- Conclusion<br /> ---------------------------------------<br /> <br /> Well, there you have it, a quick look at style sheets and how to<br /> implement both an inline and external version. Checkout the<br /> links below if you’ve never worked with cascading style sheets<br /> before. You will be surprised at some of the things you can do<br /> with them! <br /> <br /> - http://www.devarticles.com/art/1/7 -<br /> http://hotwired.lycos.com/webmonkey/98/15/index0a.html -<br /> http://www.webreview.com/style/index.shtml -<br /> http://jigsaw.w3.org/css-validator/ <br /> <p><h2>Grab this articles</h2> <p> <textarea rows='20' cols = '50'> <h1>Introduction To Cascading Style Sheets</h1><p> <br /> CSS (Cascading Style Sheets) have been around for a while now,<br /> and act as a complement to plain old HTML files. Style sheets<br /> allow a developer to separate HTML code from formatting rules<br /> and styles. It seems like many HTML beginners’ under-estimate<br /> the power and flexibility of the style sheet. In this article,<br /> I’m going to describe what cascading style sheets are, their<br /> benefits, and two ways to implement them.<br /> <br /> --------------------------------------- Cascading whats?<br /> ---------------------------------------<br /> <br /> Cascading Style Sheets…that’s what! They’re what paint is to<br /> canvas, what topping is to ice cream… they complement HTML and<br /> allow us to define the style (look and feel) for our entire site<br /> in just one file! <br /> <br /> Cascading style sheets were introduced to the web development<br /> world way back in 1996. They get their name from the fact that<br /> each different style declaration can be “cascaded” under the one<br /> above it, forming a parent-child relationship between the<br /> styles. <br /> <br /> They were quickly standardized, and both Internet Explorer and<br /> Netscape built their latest browser releases to match the CSS<br /> standard (or, to match it as closely as they could). <br /> <br /> So, you’re still asking what a style sheet exactly is? A style<br /> sheet is a free-flowing document that can either be referenced<br /> by, or included into a HTML document. Style sheets use blocks of<br /> formatted code to define styles for existing HTML elements, or<br /> new styles, called classes. <br /> <br /> Style sheets can be used to change the height of some text, to<br /> change the background color of a page, to set the default border<br /> color of a table…the list goes on and on. Put simply though,<br /> style sheets are used to set the formatting, color scheme and<br /> style of an HTML page. <br /> <br /> Style sheets should be used instead of the standard <font>, <b>,<br /> <i> and <u> tags because:<br /> <br /> - One style sheet can be referenced from many pages, meaning<br /> that each file is kept to a minimum size and only requires only<br /> extra line to load the external style sheet file<br /> <br /> - If you ever need to change any part of your sites look/feel,<br /> it can be done quickly and only needs to be done in one place:<br /> the style sheet.<br /> <br /> - With cascading style sheets, there are many, many page<br /> attributes that simply cannot be set without them: individual<br /> tags can have different background colors, borders, indents,<br /> shadows, etc.<br /> <br /> Style sheets can either be inline (included as part of a HTML<br /> document), or, referenced externally (Contained in a separate<br /> file and referenced from the HTML document). Inline style sheets<br /> are contained wholly within a HTML document and will only change<br /> the look and layout of that HTML file. <br /> <br /> Open your favorite text editor and enter the following code.<br /> Save the file as stylesheet.html and open it in your browser:<br /> <br /> <html> <head> <title> Cascading Style Sheet Example < itle><br /> <style> h1 { color: #636594; font-family: Verdana; size: 18pt; }<br /> </style> </head> <body> <h1>This is one big H1 tag!</h1> </body><br /> </html> <br /> <br /> When you fire up your browser, you should see the text "This is<br /> one big H1 tag!" in a large, blue Verdana font face.<br /> <br /> Let’s step through the style code step by step. Firstly, we have<br /> a pretty standard HTML header. The page starts with the <html><br /> tag followed by the <head> tag. Next, we use a standard <title><br /> tag to set the title of the page we are working with. <br /> <br /> Notice, though, that before the <head> tag is closed, we have<br /> our <style> tag, its contents, and then the closing </style> tag.<br /> <br /> <style> h1 { color: #636594; font-family: Verdana; size: 18pt; }<br /> </style> <br /> <br /> When you add the style sheet code inline (as part of the HTML<br /> document), it must be bound by <style> and </style> tags<br /> respectively. Our example is working with the <h1> tag. We are<br /> changing three attributes of the <h1>’s style: the text color<br /> (color), the font that any <h1> tags on the page will be<br /> displayed in (font-family), and lastly, the size of the font<br /> (size). <br /> <br /> The code between the { and } are known as the attributes. Our<br /> sample code has three. Try changing the hexadecimal value of the<br /> color attribute to #A00808 and then save and refresh the page.<br /> You should see the same text, just coloured red instead of blue.<br /> <br /> --------------------------------------- An example of an<br /> external style sheet ---------------------------------------<br /> <br /> External style sheets are similar to internal style sheets,<br /> however, they are stripped of the <style> and </style> tags, and<br /> need to be referenced from another HTML file to be used. <br /> <br /> Create a new file called “mystyle.css” and enter the following<br /> code into it:<br /> <br /> h1 { color: #a00808; font-family: Verdana; size: 18pt } <br /> <br /> Next, create a HTML file and name it external.html. Enter the<br /> following code into external.html:<br /> <br /> <html> <head> <title> External Style Sheet Reference Example <<br /> itle> <link rel="stylesheet" type="text/css" href="mystyle.css"><br /> </head> <body> <h1>This is one big H1 tag!</h1> </body> </html> <br /> <br /> As mentioned above, you can see that the actual code in<br /> mystyle.css is exactly the same as it was in the inline example.<br /> In our HTML file, we simply place a <link> tag in the <head><br /> section of our page. The rel=”stylesheet” attribute tells the<br /> browser that the link to the external file is a style sheet. The<br /> type=”text/css” attribute tells the browser that mystyle.css is<br /> a text file containing css (cascading style sheet) declarations.<br /> Lastly, the href=”mystyle.css” attribute tells the browser that<br /> the actual file we want to load is mystyle.css. <br /> <br /> --------------------------------------- Conclusion<br /> ---------------------------------------<br /> <br /> Well, there you have it, a quick look at style sheets and how to<br /> implement both an inline and external version. Checkout the<br /> links below if you’ve never worked with cascading style sheets<br /> before. You will be surprised at some of the things you can do<br /> with them! <br /> <br /> - http://www.devarticles.com/art/1/7 -<br /> http://hotwired.lycos.com/webmonkey/98/15/index0a.html -<br /> http://www.webreview.com/style/index.shtml -<br /> http://jigsaw.w3.org/css-validator/ <br /> More <a href="http://www.articlesroom.com">free articles</a> from <a href="http://www.articlesroom.com">http://www.articlesroom.com</a> </textarea> <p> </td></tr></table><table width='100%'> <tr> <td valign='top'> <h3>Related articles</h3> <br><ul><li><a href='Samoa-Holidays-can-help-you-Rejuvenate-your-Body-and-Soul-173433/'><font size='2' face='arial'>Samoa Holidays can help you Rejuvenate your Body and Soul</font></a></li><li><a href='How-West-Ottawa-is-a-Good-Place-to-Select-Apartment-for-Rent-173428/'><font size='2' face='arial'>How West Ottawa is a Good Place to Select Apartment for Rent</font></a></li><li><a href='Assisted-living-Chicago-173389/'><font size='2' face='arial'>Assisted living Chicago</font></a></li><li><a href='Are-you-looking-for-a-great-holiday-option-and-your-family-is-ready-to-go-to-Ibiza-173368/'><font size='2' face='arial'>Are you looking for a great holiday option and your family is ready to go to Ibiza.</font></a></li><li><a href='The-Glory-of-Sunless-Tanning-173362/'><font size='2' face='arial'>The Glory of Sunless Tanning</font></a></li><li><a href='Find-Stunning-Contemporary-Furniture-To-Make-Your-Home-An-Oasis-173312/'><font size='2' face='arial'>Find Stunning Contemporary Furniture To Make Your Home An Oasis</font></a></li><li><a href='Drench-in-the-Regal-Ambiance-with-Portugal-Holiday-Packages-173298/'><font size='2' face='arial'>Drench in the Regal Ambiance with Portugal Holiday Packages</font></a></li><li><a href='WaterRelated-Disaster-Safety-First-173293/'><font size='2' face='arial'>Water-Related Disaster? Safety First</font></a></li><li><a href='Eye-Shadow-Tips-Every-Woman-Should-Know-173279/'><font size='2' face='arial'>Eye Shadow Tips Every Woman Should Know</font></a></li><li><a href='Jaipur-Hotels-173260/'><font size='2' face='arial'>Jaipur Hotels</font></a></li><li><a href='Learn-How-A-Grand-Rapids-Dentist-Will-Create-A-Beautiful-Smile-While-Allaying-Your-Fears-Of-The-Dentist-173219/'><font size='2' face='arial'>Learn How A Grand Rapids Dentist Will Create A Beautiful Smile While Allaying Your Fears Of The Dentist</font></a></li><li><a href='Cosmetic-Aesthetics-Treatments-173217/'><font size='2' face='arial'>Cosmetic Aesthetics Treatments</font></a></li><li><a href='Learn-More-About-The-Greatest-Actress-In-Canada-Sabine-Mondestin-173214/'><font size='2' face='arial'>Learn More About The Greatest Actress In Canada, Sabine Mondestin</font></a></li><li><a href='Part-of-body-treatment-173206/'><font size='2' face='arial'>Part of body treatment</font></a></li><li><a href='Booking-a-Holiday-Tour-in-Tallin-173205/'><font size='2' face='arial'>Booking a Holiday Tour in Tallin</font></a></li><li><a href='Service-at-some-of-the-hotels-in-Ibiza-is-great-and-make-you-feel-at-home-173198/'><font size='2' face='arial'>Service at some of the hotels in Ibiza is great and make you feel at home</font></a></li><li><a href='Colors-In-The-Web-173195/'><font size='2' face='arial'>Colors In The Web</font></a></li><li><a href='Why-Sprinkler-Repairs-Companies-Will-Actually-SAVE-You-Money-173179/'><font size='2' face='arial'>Why Sprinkler Repairs Companies Will Actually SAVE You Money</font></a></li><li><a href='Getting-your-web-migration-right-173164/'><font size='2' face='arial'>Getting your web migration right</font></a></li><li><a href='HP-LASERJET-PRINTER-MAINTENANCE-173159/'><font size='2' face='arial'>HP LASERJET PRINTER MAINTENANCE</font></a></li><li><a href='Services-of-English-Escorts-in-London-173143/'><font size='2' face='arial'>Services of English Escorts in London</font></a></li><li><a href='Are-English-Escorts-in-London-Prostitutes-173142/'><font size='2' face='arial'>Are English Escorts in London Prostitutes?</font></a></li><li><a href='English-Escorts-in-London-for-a-Night-To-Remember-173141/'><font size='2' face='arial'>English Escorts in London for a Night To Remember</font></a></li><li><a href='How-about-getting-enjoyed-at-Tur-palas-playa-den-bossa-ibiza-173138/'><font size='2' face='arial'>How about getting enjoyed at Tur palas playa den bossa ibiza</font></a></li><li><a href='A-Guide-to-purchasing-Park-Benches-173131/'><font size='2' face='arial'>A Guide to purchasing Park Benches</font></a></li></ul><h3>Newest Articles</h3><ul><li><a href='Reviews-on-Different-Business-Catalog-Printing-Process-159059/'><font size='2' face='arial'>Reviews on Different Business Catalog Printing Process</font></a></li><li><a href='Selling-Your-Experience-159058/'><font size='2' face='arial'>Selling Your Experience</font></a></li><li><a href='Where-Cable-Lighting-Should-Be-Used-159057/'><font size='2' face='arial'>Where Cable Lighting Should Be Used?</font></a></li><li><a href='Level-Up-Your-Business-Cards-A-Notch-Higher-159056/'><font size='2' face='arial'>Level Up Your Business Cards A Notch Higher</font></a></li><li><a href='Pedaling-to-wash-clothes-159055/'><font size='2' face='arial'>Pedaling to wash clothes</font></a></li><li><a href='Basic-Adventure-Travel-Check-List-159054/'><font size='2' face='arial'>Basic Adventure Travel Check List</font></a></li><li><a href='eConn-Resume-Processing-Solution-only-at-249-159053/'><font size='2' face='arial'>eConn Resume Processing Solution only at $249</font></a></li><li><a href='Advanced-Kiosk-Systems-to-Compact-Tough-Conditions-159052/'><font size='2' face='arial'>Advanced Kiosk Systems to Compact Tough Conditions</font></a></li><li><a href='Freestanding-Fire-Pits-Now-for-Entertainment-and-Grilling-159051/'><font size='2' face='arial'>Freestanding Fire Pits: Now for Entertainment and Grilling</font></a></li><li><a href='How-to-Keep-Your-Fire-Pit-Handy-for-Winter-Use-159050/'><font size='2' face='arial'>How to Keep Your Fire Pit Handy for Winter Use</font></a></li><li><a href='Mr-Ashok-Mahindru-159049/'><font size='2' face='arial'>Mr. Ashok Mahindru</font></a></li><li><a href='Propecia-Prescription-To-Give-Your-Hair-Grow-Back-159048/'><font size='2' face='arial'>Propecia Prescription To Give Your Hair Grow Back</font></a></li><li><a href='Audemars-Piguet-Replica-WatchesA-Much-Better-Quality-At-Fashionreplicacom-159047/'><font size='2' face='arial'>Audemars Piguet Replica Watches-A Much Better Quality At Fashion-replica.com</font></a></li><li><a href='Choose-the-best-elitemakeup-foundation-159046/'><font size='2' face='arial'>Choose the best elitemakeup foundation</font></a></li><li><a href='Hublot-Replica-Watch-The-preferred-Christmas-gift-at-the-highest-levels-159045/'><font size='2' face='arial'>Hublot Replica Watch -The preferred Christmas gift at the highest levels</font></a></li><li><a href='Pass-a-Drag-Test-Pass-a-Social-Responsibility-159044/'><font size='2' face='arial'>Pass a Drag Test: Pass a Social Responsibility</font></a></li><li><a href='Tag-Heuer-Replica-At-Fashionreplicacom-–-The-Best-Gifts-For-Christmas-159043/'><font size='2' face='arial'>Tag Heuer Replica At Fashion-replica.com – The Best Gifts For Christmas </font></a></li><li><a href='Passing-a-Drag-Test-Is-the-First-Step-159042/'><font size='2' face='arial'>Passing a Drag Test Is the First Step</font></a></li><li><a href='You-May-Run-but-You-Can-not-Hide-From-a-Drug-Test-159041/'><font size='2' face='arial'>You May Run but You Can not Hide From a Drug Test</font></a></li><li><a href='Event-management-and-advertising-services-from-Infra-Design-159040/'><font size='2' face='arial'>Event management and advertising services from Infra Design</font></a></li><li><a href='Utah-Ski-Resort-Real-Estate-And-Lodging-Snow-Basin-And-Powder-159039/'><font size='2' face='arial'>Utah Ski Resort Real Estate And Lodging Snow Basin And Powder</font></a></li><li><a href='Drugs-in-the-Field-of-Sports-159038/'><font size='2' face='arial'>Drugs in the Field of Sports</font></a></li><li><a href='Do-Your-Kid-pass-a-Drug-Test-159037/'><font size='2' face='arial'>Do Your Kid pass a Drug Test?</font></a></li><li><a href='Get-that-Catalog-Printing-Right-159036/'><font size='2' face='arial'>Get that Catalog Printing Right</font></a></li><li><a href='Understand-Exactly-What-Your-Business-Has-to-Offer-159035/'><font size='2' face='arial'>Understand Exactly What Your Business Has to Offer</font></a></li></ul><h3>Most Popular Articles</h3><ul><li><a href='12-Golden-rules-for-every-Dog-owner-1/'><font size='2' face='arial'>12 Golden rules for every Dog owner</font></a></li><li><a href='17-Tips-Thatll-Safeguard-You-and-Your-Family-From-Dog-Bites-3/'><font size='2' face='arial'>17 Tips That'll Safeguard You and Your Family From Dog Bites</font></a></li><li><a href='14-Tips-for-Crate-Training-Your-New-Puppy-2/'><font size='2' face='arial'>14 Tips for Crate Training Your New Puppy</font></a></li><li><a href='3-Simple-Steps-For-A-Healthier-Dog-4/'><font size='2' face='arial'>3 Simple Steps For A Healthier Dog</font></a></li><li><a href='3-Tips-For-Dealing-With-Dog-Emergencies-5/'><font size='2' face='arial'>3 Tips For Dealing With Dog Emergencies</font></a></li><li><a href='Generating-a-positive-ROI-from-PPC-7/'><font size='2' face='arial'>Generating a positive ROI from PPC</font></a></li><li><a href='Search-Engine-Promotion-your-options-explained-6/'><font size='2' face='arial'>Search Engine Promotion - your options explained</font></a></li><li><a href='Submit-site-to-announce-it-to-the-world-8/'><font size='2' face='arial'>Submit site to announce it to the world!</font></a></li><li><a href='Exercise-Bikes-–-How-Far-They-Have-Come-36709/'><font size='2' face='arial'>Exercise Bikes – How Far They Have Come</font></a></li><li><a href='Mortgage-Equity-Loans-With-Multiple-Benefits-143582/'><font size='2' face='arial'>Mortgage Equity Loans With Multiple Benefits </font></a></li><li><a href='Javascript-Basics-01-105388/'><font size='2' face='arial'>Javascript Basics 01</font></a></li><li><a href='Home-Equity-Online-Loans-become-more-popular-143581/'><font size='2' face='arial'>Home Equity Online Loans become more popular </font></a></li><li><a href='What-Does-Your-Body-Language-Tell-128514/'><font size='2' face='arial'>What Does Your Body Language Tell?</font></a></li><li><a href='Let-Your-Business-Grow-By-Invoice-discounting-in-the-UK-143583/'><font size='2' face='arial'>Let Your Business Grow By Invoice discounting in the UK </font></a></li><li><a href='Uncommon-Facts-Rules-of-English-Language-122020/'><font size='2' face='arial'>Uncommon Facts / Rules of English Language</font></a></li><li><a href='Misunderstandings-Due-To-Accents-124221/'><font size='2' face='arial'>Misunderstandings Due To Accents</font></a></li><li><a href='Diabetes-and-Your-Eyesight-129800/'><font size='2' face='arial'>Diabetes and Your Eyesight</font></a></li><li><a href='How-to-Prevent-Online-Identity-Theft-134713/'><font size='2' face='arial'>How to Prevent Online Identity Theft</font></a></li><li><a href='Learn-to-Speak-Basic-Chinese-Mandarin-Words-and-Phrases-134352/'><font size='2' face='arial'>Learn to Speak Basic Chinese (Mandarin) Words and Phrases</font></a></li><li><a href='Learn-Korean-Part-1-Asian-Languages-and-Language-Families-125443/'><font size='2' face='arial'>Learn Korean: Part 1 - Asian Languages and Language Families</font></a></li><li><a href='Pancreas-Transplants-A-Solution-For-Type-1-Diabetes-Sufferers-128084/'><font size='2' face='arial'>Pancreas Transplants - A Solution For Type 1 Diabetes Sufferers?</font></a></li><li><a href='Tips-To-Learn-English-128513/'><font size='2' face='arial'>Tips To Learn English</font></a></li><li><a href='Learn-Korean-Part-2-Social-Status-in-Culture-136877/'><font size='2' face='arial'>Learn Korean: Part 2 - Social Status in Culture</font></a></li><li><a href='IELTS-Facts-Not-Many-People-Know-134456/'><font size='2' face='arial'>IELTS: Facts Not Many People Know</font></a></li><li><a href='Aphasia-The-Cruelest-Language-Barrier-128612/'><font size='2' face='arial'>Aphasia: The Cruelest Language Barrier</font></a></li></ul> </td> <td valign='top'> <script type='text/javascript'><!-- google_ad_client = 'pub-1958729083303091'; google_ad_width = 160; google_ad_height = 600; google_ad_format = '160x600_as'; google_ad_type = 'text_image'; google_ad_channel = '9616489279'; google_color_border = 'FFFFFF'; google_color_bg = 'FFFFFF'; google_color_link = '0000ff'; google_color_text = '000000'; google_color_url = '455a79'; //--> </script> <script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'> </script> </td> </tr> </table> </p> </div> </div><!--end of right content--> <div style=" clear:both;"></div> </div><!--end of main content--> <div id="footer"> <div class="footer_links"> <p align ="center"> </p> 2007 <a href="http://www.articlesroom.com">articlesroom.com</a> - All Rights Reserved </div> </div> </div> <!--end of main container--> </body> </html>