Search

Yahoo Links

Links to Site

Login Form






Lost Password?
No account yet? Register

Syndicate

Who's Online

Home
Welcome to the Frontpage
style guides
Search history:
Sep 08, 2008

CD-KEY TOAD, sonyericsson div 8.4 service kit lite, samsung t100 unlocker.exe, t l charger Xara3D v 5.0, cfnm net stars, myspace friendlist code, 42-15 81 street, counterstrike1.6 update download, english movie parasite eve, key crack kerio personal firewall, divx codec tag 8192 download, lotus notes key 7.5 crack

Sep 07, 2008

2003 SP1 key generator, INXS - Pretty Vegas free download mp3, Autocad 2002 Downloadz, TEAM ROR vmware 5, crack no cs diablo lord of destruction version 11b, video family nudist.net, plug-in Vray download crack, download FULL virtual dj 3.4, 3c905-tx-based ethernet adapter, webcopier 3.6 keygen nitrous, advanced uninstaller pro 2006 crack or patch

Sep 06, 2008

jewel quest reflexive crack keygen, wma-mps converter, cestar suite 2.5 for windows mobile 2003, wwwhack tutorial download, Dr WEB 433 key Crack, The Bat 2.10.01crack, INXS - Pretty Vegas free download mp3, Dowload DVD-Film, free tuneup utilities update, program ejay hip hop, satisfaction-benny benassi nokia, key crack kerio personal firewall, crack lego star wars 1.1 download, film free dowland, sexe .ru, 2003 SP1 key generator

Sep 05, 2008

patcher oxygen 2.1 loader nokia, downloads gratis para the sims 2, abode acrobat 6.0 key serial, playonline registration code playonline registration code, bignaturals sex, Dvd-cloner version 2.62 keygen Easy CD-DA Extractor 8.2.4 programa crack codes atomic mail hunter, Adobe Photoshop Album 2.0 Starter Key, Autocad 2002 Downloadz, Crack AVS V deo Convert 4.2.1, key crack kerio personal firewall, amerika - Rammstein free video download, donlowd bootleg movies for free, keygen of kazaa plus 3.0, crak Anti-Trojan Shield 1.4.0.3

Sep 04, 2008

mob time manager 3.6.4 serial, downloads gratis para the sims 2, ultra edit 32 registration code, download hitman.jar, vista 32 beta download warez, webcopier 3.6 keygen nitrous, TEAM ROR vmware 5, how to crack .exe halo.exe, The Incredible Machine even more mac downloads, computer desk armoire, warez code abbyy 7.0.0.620, program ejay hip hop, crack windows passward, Fly DVB-S progdvb, games free 6600, mapsource 6.5 code, dvd x player standard 4.0 keygen, mapsource 6.5 code, crack nocd 18 Wheels of steel Pedal to the Metal, counter strike: condition zero cd key free generator, free soft virtualdj, lucent index license key crack

Sep 03, 2008

PDF Password Remover v2.5 crak, Adobe Photoshop Album 2.0 Starter Key, crack demo for QuarkXPress, worlds of warcraft 1.8.2 to 1.8.2 patch download, Prince Of Percia The 2 Thrones series60, crack wmaplus mobile, dowload warcraft 3 III no cd crack, videw xxx, free dowlond winanp 5.12, free dowlond winanp 5.12, image converter 2.1 bootleg, DeskJet 3420 filetype: zip, validation xp windows key hack, gratis musikclips 3gp, avertv go crak serial usa, L2WALKER.EXE PARA C3, image converter 2.1 bootleg, starfuck copy

Home
Why you should avoid using tables PDF E-mail
Written by Robert Santorelli   
Monday, 26 May 2008

Tables are one of the most often used HTML elements, however they are also one of the most often misused ones. In this article I will explain when it is a good idea to use tables in your code and when it is better to avoid them.

What are tables used for?

Web designers use tables for multiple purposes - positioning images and text on webpages (page layout), displaying large arrays of data, creating rectangular boxes on the webpage, creating input forms, etc.
Why do people working on Search Engine Optimization (SEO) try to avoid tables?

Use of HTML tables is often frowned upon by people doing Search Engine Optimization (SEO) work. In order to understand how tables can hurt ranking of your pages we need to take a look at the way search engines rank pages. While the exact details of search engine ranking is proprietary information available only to the search engine owners, there are some practical search optimization rules obtained by trial and error.

    Search engines prefer human-readable text to HTML markup. The more human-readable text and the less HTML markup is there on your pages the better.
    Search engines prefer smaller HTML files. The general rule is to make sure your pages do not exceed 100KB in size.

So why do HTML tables hurt search engine optimization?

The SEO-unfriendliness of HTML tables is directly or indirectly caused by the fact that table-based layouts generally tend to create larger HTML files than pure CSS-based layouts.

    A layout using HTML tables usually requires more HTML tags compared to a tableless layout implemented with CSS. In the extreme case when a table is used to create a single box, there are 3 tags used by the table layout (<table>, <tr> and <td>) versus 1 tag (<div>) used by the tableless layout. The greater number of tags used to implement the layout naturally leads to a worse text/markup ratio.
    The larger number of table tags coupled with the fact that in most cases tables use HTML attributes instead of CSS usually leads to larger files, thus hurting the SEO ranking even more.

What other problems can cause the inappropriate use of tables?

According to the HTML 4 specification:

    Tables should not be used purely as a means to layout document content as this may present problems when rendering to non-visual media. Additionally, when used with graphics, these tables may force users to scroll horizontally to view a table designed on a system with a larger display. To minimize these problems, authors should use style sheets to control layout rather than tables.

If tables often hurt SEO and can cause other problems why do people still use them?

Most important reasons for the extensive use of tables are:

    Some of the pages that use table layout have been designed in the old days when browsers did not support CSS properly. Rewriting them to use tableless CSS layout would mean lots of manual work.
    In other cases CSS-only web layout cannot completely replace the functionality offered by tables. CSS is quite versatile, but the CSS support in Internet Explorer - today's most popular browser is somewhat limited. The CSS subset understood by Internet Explorer does not really let us create non-fixed (liquid) layouts where the page expands and shrinks based on the size of the browser window. We still can convert the page to tableless and view it in Internet Explorer, but we will have to make the page layout fixed.
    Tables can also be used when they are best suited for displaying some data. For example if you have to display a school timetable then it is natural to use the HTML <table> tag.

Last Updated ( Saturday, 05 July 2008 )