All the articles, all the subjects!
Articles  Articles  Articles

Css - Maximum Benefits


Overall rating: (N/A)

The article "CSS - Maximum benefits" talks about css, it has been released by Zoran Makrevski.

What is CSS?


CSS is a simple file which controls the visual appearance of a Web page wtihout compromising its structure. Using CSS we can control our font size, font color, link cloor 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, chnaces are that your HTML file size will be quite enormous. Fact is that we live in a busy world, and people are not will to wait more than 5 secodns web page to load. >From the other side 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 that technique?

Well, imagine that you have site with more than 50 pgaes. One day, you decide that you want to change font color and colors of the links on your Internet 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 that 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're 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 Internet 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 comamnds like: <font color="#0000ff"><font size=2>Product</font> will help us to reduce file size, but that's not the only benefit. Using CSS word product in that example will be moved more close on the top of the document. Search engnie 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 noitce 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 fcators 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 human being last month use Internet Explorer, but you should try to be on safe side and ensure that your CSS code is valid.
Not all browsers interrpet the CSS on same way.

You can valdiate your CSS here: http://jigsaw.W3.Org/css-validator/




Write a comment
Write a comment about the article
CSS - Maximum benefits



Top Articles Searches
Music Business Lessons From The Village People Ezine Advertising Works: Top 10 Reasons To Advertise With Ezines Increasing Site Traffic Luxury Baby Bedding - What To Look For Before You Buy Archery Fishing Tips and Techniques One Of Cancun's Best What do customers really want? Used Car Buying - 5 Steps To Success After the shot, Trailing Deer Part 1 Woodworking Beginners: Secret Tips To Start Right An Introduction to Glow Sticks Determining Your Online Ad Budget America - Is it in Bible prophecies and what can the USA expect at the second coming of Jesus Christ Specialty Advertising in C-Stores Red Bull and Vodka--What a Pair! Payment Plan Options for Home Treadmills Enjoy Your Vacations with Colorado Ski Vacation Package Buying A Computer: Processor & Memory: Affordability And Performance Buying Tips Most Profitable Adsense Money Making Tip Nokia 7380 Mobile Phone Deals – Exceptional Features at Inimitable Costs


Link To Us! Add to favorites Tell a friend! RSS Feed

Sitemap   Privacy Policy   Terms Of Service