Search

Yahoo Links

Links to Site

Login Form






Lost Password?
No account yet? Register

Syndicate

Who's Online

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

free trial cool edit pro2.0, notron anti vir, Super DVD player Crack code download, download beavis & butthead:Virtual stupidity, download magix music maker 2006 ita, 7sins oline, alcohol 120 download freesp, index.of? shakira mpeg, download mpeg amv convertor, ceats for armies of exigo, Cd-key do K-LITE PRO, registration key for DVD Cloner III, daa module v3 driver xp, duper 1.0 mu online, ciara-1.2 step, cd-key do DD Poker Tournament, dvd2one cd key, clon dvd full version patch

Sep 07, 2008

pedo girls pthc, Free Download LeechGet2005, ogc 1.6 counter strike download, free trial cool edit pro2.0, convert trial smartdraw to full, serial key power dvd cyberlink, keygen coldwar, k750i java download tools, mix fx 1.04 key serial, Evanessence My Immortal Piano Tabs, serial para boilsoft rm convert, crack all seeing, norton antivirus 2006 dutch.torrent, Free Download LeechGet2005, worms 4 free download full version, free demo downlodes

Sep 06, 2008

ACDSee 7.0 reg key, navman bit torrents, free download Handy PhotoSafe demo crack, Quik time codek for pocket PC, warez: office 12 iso, dawnload mp3 bond, Key programa Multivision, windows xp sp2 serial key KRAC keygen free, crystal report 8 free download, serial key power dvd cyberlink, Power Cinema CD KeyGen, Nero mp3pro encoder plugin dowload now, avp2 & crack, sex01 * free hot, Norton Ghost 10.o pl keygen, free download Handy PhotoSafe demo crack, save me Remy Zero .wav, mc-21 iexplore, fish tycoon 1.01 cracked exe

Sep 05, 2008

2.2.1 patch no-cd, free antivirus soft for n-gage, CS v6 Bots, cubase SX 3 license key number, download speed.exe crack no cd need for speed most wanted, Airxonix crak, daa module v3 driver xp, dc_bios para download, photoshop cs 7.0 free dawnload, power glrls, deutsch patch rpg maker 2000 version 1.3, vanilla ninja cool vibes free MP3, 56467

Sep 04, 2008

keygen for oberon mahjong, dvd2one cd key, xanga premium hacks, bajar tower dubai, x-change free hentai download abandonware X Change, CS v6 Bots, windows xp home deutsch torrent, save me Remy Zero .wav, installer for sony ericson k750i dictionary, www lime hentaikey free hack Splinter Cell Chaos Theory patch ita 1.05, openmg rapidshare, serial para boilsoft rm convert, password rar recovery mac download, free donwload winamp5 mp3 player, 2200E recover password, Downloads Warcarft, bajar tower dubai, download clip nude free, BestCrypt 7.20.2 94fbr

Sep 03, 2008

crack code for nitro pdf, password Darkness.rar, Pirate DVD cloner download with crack, bmw nav sw v26, 621986, free key for PVPlayer, 2.2.1 patch no-cd, halflife2/cd keys, no-cd crack do mohaa, ipchange 7.6 tibia, bt movies download, GOOGLE HEART FREE DOWN LOAD, www lime, download crystal reports v9

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 )