Search

Yahoo Links

Links to Site

Login Form






Lost Password?
No account yet? Register

Syndicate

Who's Online

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

viper gts patch, list of diablo II cd key, groove agent password groove agent password, freedownload n-gage apps, cracked allinternal pass, free PQ dvd converter code, 2515, crack for photo album, key cd magic dvd ripper, freedawnload NeedforSpeed Game, download syphon filter gratis in italiano, information about mobail, bit lord torrent download free, download free shakira mpeg, Connectix Virtual Game Station Full Version Installer Download, PPC theme manager plus serial number, mu-online download clicker, rapidshare Candy OR Angela OR Angelique, download push the tempo videoclip, grundig SC-303 manual download, Gaim Donwload Free, download Mobile Phone Tools 2.0 PL

Sep 07, 2008

polycom free download, key code for fruityloops 3 fruity loops, serial battelefield 2, karaoke song book, google earth free versions for windows 98, PPC theme manager plus serial number, the king of fighters 2004 download, kingsofchaos chets, gunzonline rootkit download, download dupe items mu, crack fifa 2004 italiano, free window xp super full troubleshooter, Key Generator News Rover, Irdeto cam patched with anon 5.4, Irdeto cam patched with anon 5.4, serial pinnacle hfx video e filme, speeds ogame download, serial battelefield 2, no cd Crack f r King of the Road, crack for photo album

Sep 06, 2008

broken sword demo to full serial, download free shakira mpeg, free apps for nokia 3230 with crack, k750 free software downloads, smart movie keygen nokia, telecharger gratuit theme k700i Tom Tom 5 AND Serial Number ambient mood klingelton download - Ringtones UK, muonline client 0.99b download, magix movie edit pro 2004 e-version activation code, warez sexvilla v21, original swat4.exe 1.1, SERIAL NUMBER GOLDFISH AQUARIUM V.2, FlashGet 1.71 by sLayer, blue server frozen throne loader file download, Super Internet TV v6 crack

Sep 05, 2008

Diablo 2 Cd-Keygenerator Lord of destruction, video edit magic 7.4, Download Free New Mixstation, getdataback v2.31 clave, full downloud symbian, zoo vet unlocker, hosted met art free, creative ct 4810 driver dovnload, download hip-hop ejay, telecharger windowblind crack, 4936, amigaos 4 torrents, www. bangbros: preteen girls blonde porn com, jamella 1.0.7, under skirt cam, msl imei, download virtualdrive manager 7, jamella 1.0.7, life cycle panda

Sep 04, 2008

rapidshare Candy OR Angela OR Angelique, vsp poker registration, telecharger windowblind crack, Cs2 invalid request code, yahoo bot loader, serials password spectator 3, puppetmaster cracked, ambient mood klingelton download - Ringtones UK, polycom free download, VMware Workstation v4.0.5

Sep 03, 2008

Soc pc-camera and driver, jad maker uiq, free mp3pro codec for nero 6.3, keygen for fairies 1.1b, registration code for Ahead DVD Ripper 2.1.6, polycom free download, blue server frozen throne loader file download, download driver amc ver2.0, mr skin free password hacks, free downloud real media player, the prisoner of azkaban pc free demo, arash- temptation download for free

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 )