Web Development Information

URLZ.NET Web Development Information

Back to URLZ.NET Web Directory

CSS - Maximum Benefits


What is CSS?

CSS is a simple file which controls the visual appearance of a Web page without compromising its structure. Using CSS we can control our font size, font color, link color and many other attrihoweveres on our web page. This will make our HTML code much more readable and the page size will be reduced.

Why to use it and how to use it properly

If you don't use CSS on your web pages and you have many tables and content on them, chances are that your HTML file size will be quite big. Fact is that we live in a busy world, and people are not will to wait more than 5 seconds web page to load.

From the other side some web developers implement the CSS on wrong way. They write their CSS in HTML code of the page, like this:

andlt;htmlandgt;

andlt;headandgt;

andlt;titleandgt;My Pageandlt;/titleandgt;

andlt;styleandgt;

A

{

font-family: Verdana;

font-size:8pt;

color:black;

text-decoration:none

}

andlt;/styleandgt;

What is wrong with this technique? Well, imagine that you have site with more than 50 pages. One day, you decide that you want to change font color and colors of the links on your site. You will have to edit ALL the pages on your site, and do to that you will need time, because you place your CSS in your web page.

Better way is to save your visual attrihoweveres in separate, external CSS file, and to link that file with your page like this:

andlt;htmlandgt;

andlt;headandgt;

andlt;titleandgt;My Pageandlt;/titleandgt;

andlt;link href="myStyle.css" rel="stylesheet" type="text/css"andgt;

Using this technique, you can change the look of your site within minutes, regardless of the number of pages, because your visual attrihoweveres are saved in ONE external CSS file. Edit that file, and you are done.

Benefits

Which are the benefits of using CSS? List is quite long and I will list here only the most important.

  • Your web page will load faster
  • Web page will become more search engine friendly
  • You can change you site appearance within minutes
  • You can write separate CSS file for handheld devices which will be called up instead of the regular CSS file
  • You can forget about creating printer friendly version of your site using separate CSS file when user chooses to print the web page.

Avoiding standard HTML commands like:

andlt;font color="#0000ff"andgt;andlt;font size=2andgt;Productandlt;/fontandgt;andlt;/fontandgt;andlt;/fontandgt;

will help us to reduce file size, however that is not the only benefit. Using CSS word product in this example will be moved more close on the top of the document. Search engine will pick up more content and less code.

Imagine that you have 3 columns table on your page. When you see the code, you will notice that first come code for your table, and after that it come your content. Positioning your 3 columns using CSS instead of standard inline elements:

andlt;table width="90%" border="0" cellspacing="0" cellpadding="0"andgt;

andlt;trandgt;

andlt;td width="381" height="150" valign="top" bgcolor="FFEDD4"andgt;

My Product

andlt;/tdandgt;

andlt;td height="150" valign="top" bgcolor="FFEDD4"andgt;

When CSS is used, your code might look like this:

andlt;div id="leftcontent"andgt;

My Product

andlt;/divandgt;

Again your code is much more clear, and your content is moved on the top of your document, making your HTML page search engine friendly, and reducing your file size.

Content is one of the most important factors in Search Engine Optimization, and you will benefit with removing the unnecessary code in your HTML and create search engine friendly web page.

Validate it

Browser war is far behind us. Reality is that most of the people today use Internet Explorer, however you should try to be on safe side and ensure that your CSS code is valid. Not all browsers interpret the CSS on same way. You can validate your CSS here: http://jigsaw.w3.org/css-validator/

About The Author

Zoran Makrevski is founder and CEO of SEO.Goto.gr.

Since 1998 has focused on E-Commerce and attempts to bring more traffic to the customer sites bring him in the SEO industry, and he is running his own company today.

Search Engine Positioning Firm

SEO.Goto.gr


MORE RESOURCES:
BlackBerry fans who've been yearning for a touch-based handset à la iPhone now have one, but the BlackBerry Storm, which Verizon Wireless plans to start selling Friday for $250 with a two-year contract, might not be the smart phone of their dreams.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

Yahoo rolled out a beta version of its new Glue search concept for the first time in the U.S. late Wednesday.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

Despite the sluggish economy, Verizon Wireless predicts strong sales for the BlackBerry Storm, which goes on sale Friday for $200 after rebate.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

Go ahead, cut the cord. These cool and useful Bluetooth devices help you phone, print, present and more -- all without wires.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

Presented By:



Seven nights of one great discovery after another continues tonight at 9P e/p only on National Geographic Channel. From the ancient pyramids to the ocean depths, from lost cities to outer space, travel with the latest generation of intrepid explorers as they make one great discovery after another. Expedition Week, only on National Geographic Channel.
www.natgeotv.com/expedition
 

Go ahead, cut the cord. These 10 cool and useful Bluetooth accessories help with everything from making hands-free calls and printing photos to typing e-mails and controlling presentations -- all without wires.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

A Boston-area teenager has pleaded guilty to charges of hacking and placing fake emergency phone calls in hopes of summoning police tactical response teams to the homes of his victims.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

Months before bowing to pressure from Intel to relax the requirements for its 'Vista Capable' marketing program, Microsoft published an article on its TechNet site urging users to avoid Intel's 915 graphics chip set if they planned to upgrade to Windows Vista, internal e-mails at Microsoft show.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

As President Bush prepares to leave office, the task of upgrading the security of federal information systems to deal with new cyberthreats continues to be very much a work in progress.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

Presented By:



Seven nights of one great discovery after another continues tonight at 9P e/p only on National Geographic Channel. From the ancient pyramids to the ocean depths, from lost cities to outer space, travel with the latest generation of intrepid explorers as they make one great discovery after another. Expedition Week, only on National Geographic Channel.
www.natgeotv.com/expedition
 

Microsoft officials today demonstrated an upcoming tool aimed at enabling database administrators to manage hundreds of database servers at a time.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

NASA scientists have successfully tested a new Internet protocol to improve communications among spacecraft traveling throughout the solar system.
Add to digg Add to StumbleUpon Add to Twitter Add to Slashdot

View more news and analysis from Computerworld.com

home | site map
Copyright © 2006 URLZ.net