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 attributes 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:
<html>
<head>
<title>My Page</title>
<style>
A
{
font-family: Verdana;
font-size:8pt;
color:black;
text-decoration:none
}
</style >
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 attributes in separate, external CSS file, and to link that file with your page like this:
<html>
<head>
<title>My Page</title>
<link href="myStyle.css" rel="stylesheet" type="text/css">
Using this technique, you can change the look of your site within minutes, regardless of the number of pages, because your visual attributes 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.
Avoiding standard HTML commands like:
<font color="#0000ff"><font size=2>Product</font></font></font>
will help us to reduce file size, but 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:
<table width="90%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="381" height="150" valign="top" bgcolor="FFEDD4">
My Product
</td>
<td height="150" valign="top" bgcolor="FFEDD4">
When CSS is used, your code might look like this:
<div id="leftcontent">
My Product
</div>
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, but 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 http://jigsaw.w3.org/css-validator/.
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
http://jigsaw.w3.org/css-validator/
Wood Dale Chicago prom limo .. Lockport Chicago limo O’HareWhen I started my company in 2002, I knew I... Read More
Huge Mistake #1: Creating a Website with Flash -- Did... Read More
We are clearly well past the innocent "golden age" of... Read More
This article was prompted by some customer support work I... Read More
The process of Web application development is critical to the... Read More
A system development process can follow a number of standard... Read More
Web templates by nature are created to aid and ease... Read More
A professional online reputation is essential to the flourishing of... Read More
Now that you have got your domain name registered, your... Read More
Whether you have your own business already, or are looking... Read More
People often come to me in a state of crisis... Read More
Do you need a web site? Are you considering getting... Read More
In the time that I have been using the Internet,... Read More
The cost of setting up a web site is dirt... Read More
Right after the thought, "I need a website," people usually... Read More
When marketing your website, it's important to know which of... Read More
If one more business owner tells me their website sucks... Read More
In the region where my company is located, South Bend,... Read More
Affiliate programs are a great way to earn an income... Read More
Rosalind wants to share her inspirational poetry with a wider... Read More
While most marketers are beginning to understand the critical importance... Read More
No matter what browser you may want to use, you... Read More
Your ObjectiveYour small business needs an appealing and professional website... Read More
You want to give your site's visitors a way to... Read More
One of the things that Internet excels is disseminating information... Read More
Antigo wedding limo ..My life's greatest passion is a safari hobby. And what... Read More
There are lots of HTML editors on the market, however,... Read More
One of the things that many people overlook when building... Read More
Anyone who knows anything about web accessibility knows that images... Read More
Rosalind wants to share her inspirational poetry with a wider... Read More
Yahoo has long offered email, an online calendar, notes, bookmarks,... Read More
Designing and creating your own website does not have to... Read More
You've put up a website to promote a product or... Read More
After years of working with entrepreneurs who developed their first... Read More
Right after the thought, "I need a website," people usually... Read More
Every online entrepreneur I talk to is asking the same... Read More
A website is the most versatile and cost-effective marketing tool... Read More
Now that you have got your domain name registered, your... Read More
#5 User Satisfaction: Learn what your visitors and site users... Read More
There's been widespread speculation about the new legislation being introduced... Read More
Keywords in Search Engine Optimizing and Search Engine Marketing are... Read More
Thousands of people are now making a living online and... Read More
Visitors to your site come looking for information or solutions... Read More
The DDA (Disability Discrimination Act) states that service providers must... Read More
People like to get immediate responses to requests. Autoresponders are... Read More
With the New Year upon us yet again, it's time... Read More
Starting a business online is no longer as difficult as... Read More
If you like the Internet and surfing through the billions... Read More
Before you jump into spending coutnless hours on designing and... Read More
The art of turning website visitors into paying customers depends... Read More
Web Development |