Hi, I am using CSS for alot of my html tags and fonts,etc but am still using tables for layout. Is their any advantage in terms of SEO to using only CSS? Thanks
I could write a page about this, but to summerized, yes it is, less markup, faster loading page etc etc.
definitely. The HTML code on each page is much cleaner The CSS file is cached from the very beginning, and this speeds up the load time for the next pages
Search engines like css it makes for cleaner code. there is a really good book called 'designing without tables' by site point. difinately worth a read.
The less code is used in a web site the more easier is for a search engine spider to crawl your site and get important content.
Save your css code as a file like style.css and link it as an external style sheet. <LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen> Your pages will load fast and SEs will not confuse your content with css codes.
Search engines really like CSS based pages. Crawlers will process your pages faster and better. Great article zk0!