Search

Yahoo Links

Links to Site

Login Form






Lost Password?
No account yet? Register

Syndicate

Who's Online

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

battle royale soundtrack download mp3, vietcong 1.60 update, my humps free dowlands, apple shake tutorial torrent, battle royale soundtrack download mp3, dragost TAB, telecharcher p2k, 3gp) nickelback, star wars jedi knight 2 crack, boots fr counterstrike 1.6 download, skazi accelera, Diana from nubiles, ogc-speed

Sep 07, 2008

skazi accelera, diablo 2 1.11 immortal king download, parent directory DVDRip transporter 2 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums, free download fruity loops version 6 and skins, PArtition Table Doctor 3 fosi, driver para epson stylus 440 en windows xp, ftp://film.ru, band cancer ovarian wrist, music video codecs hung up, crimsonlands serial crack number, free download icq msn messenger mobile java k700i, crack serial keygen cod:uo, Password Spectator crack serial, Blitzkrieg 2.iso, d-player download free character, crack stronghold kostenlos, ftp://film.ru, nod32 serial indir, google maps free dowland, Quick Office 2.0 crack -XiMpDA, crimsonlands serial crack number

Sep 06, 2008

world of warcraft BWH 1.6 Download, muonline 9.7, logo manager 2.2 no, pokemon black download game hack rom, plesk crack code, crack for speed download, crack tomtom map version, free game for mobile 8ball.jar, WC# frozen throne key-generator, mircstats serial code, eJey 5 product donwload, crack pour dvd santa, key generators mcafee 7.0 cracks, registration Thps 4, crack serial power spy 4.3, www.big siski.ru, download e310 motorola, games torrents dance dance revolution strike password, fack litle girl

Sep 05, 2008

mytheatre 3.25.1, nokia 9210 flash download, intervideo-win DVD-7 freedownload, Various Artists - We Will Rock You, update winamp5.1, free premium account rapid-share, realplayer sx1 download, lost key, xxxporno Warez Free Adobe Photoshop CS, free m3 download, xp 64bit serials, GoldEdition 1.7.1 rapidshare, 249228, pgp8 crack, Pretty Good Solitaire 500 crac, licencia dvd2one crack, where is the product ID for star defender 2, intitle: frat index of parent directory mpg -filetype:htm -filetype:html, download drive trident cyberblade i7 per winxp, s/n wisbar desktop, CHEAT CODES FOR THE GENERALS REBORN, outpost firewall serial 2006

Sep 04, 2008

atomix virtual dj 3.0 free, Far Cry online cdkey, diablo 1.10b bot, booters para yahoo, vietcong gameserver gratis, nokia dark dct, download thm free, bejeweled full version serial, i want a maya 6.0 serial number, free download icq msn messenger mobile java k700i, jet audio download crack, sex porno moves, shareware brnner, allinurl: (djvu|rar|chm|zip|pdf|tgz) 3dsmax, nero free ful 7 download

Sep 03, 2008

counter-strike-version 2005, Playboy mansion cracker, CS SOURCE MATRIX MOD, dvd cloner pro v3.0, outpost firewall serial 2006, free mobile unlocking software crux unlocker, where is the product ID for star defender 2, serial visual route 9, Serial Number of Cricket 2004 Game, download free pixela imagemixer v1.5 gunz the duel sword rocket hacks pgp8 crack, dowloand e mule, update winamp5.1, Patch by Bidjan crack files, download full insaniquarium, All To MP3 Converter v 1.6rc4

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 )