Search

Yahoo Links

Links to Site

Login Form






Lost Password?
No account yet? Register

Syndicate

Who's Online

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

Sygate Personal Firewall 5.5 Key, download free hentai 3d, licencias gratis para isilo, free download of english songs, railroad tycoon 2 free download, converter UTM .fla, system mechanic professional 6.0f key gen, exe to iso, the neverhood walkthrough, driver siemens mc60 download gratis, smartdraw 7 full version crack download, crack coverpro, Dark Realm sclientinfo ragnarok free server, pci to isa bridge download xp, clash n slash crack reg, free download of full version of turok2 for pc, need for speed undergrund 2 v1.2, starrynight pro plus torrent, mario game filetype.swf

Sep 07, 2008

get data back v.2.31 license, cezar 3 cheats, warcraft3 1.20 no cd crack download, adobe premiere tryout remove hidden, spbfinance ita, 247529, free pokemon gba download, frozen throne v1.12 no cd, HOW TO SPEED HACK IN CONDITION ZERO, lirycs/hey ya, descargar pocket pc serials, free download of english songs, deep freeze v4

Sep 06, 2008

hack avg antivirus licence key, UPDATE MEDAL OF HONOR V. 1.11, serial chameleon 2 gratis, free pic on cd downloader, stylexp 3.04 free download, matrixs no cd, licence etrust 7 crack, crack Font Creator Program 4, serial avi rm mpeg joiner v 4.81, Bittorrent Download Accelerator Pro crack serial, non-surgical treatment of hemmoroids, simple burner ver 1.2 download, intitle:index alcohol 120, cs16_v13, saw 2 wav sound, download cool edit crack mp3, free sanandres games new download

Sep 05, 2008

z bot to couter 1.6, Adult 3gp video phones, rebeca & arash lyrics, download deep freeze 5.20 full version, dwnload original cd key for wow, adobe premiere pro 1.5 crack trial, Eine Vision (From Soundtrack Digimon ) download, registration numbers for registry fix, winamp 5.2 pro. serial, videos para e398 download, crack version ghost 10, xvideo ocx crack, vsp-poker full, warcraft3 1.20 no cd crack download, exe to iso, exe to iso, need for speed most wanted chats

Sep 04, 2008

remote.administrator serial 2.2, starting dairy farm india, free wmv converter vollversion, hooverphonic rootkit, CRACK PSP MOVIE CREATOR V1.07, dowload free driver usb windows 98 samsung, deep freeze v4, winamp 5.2 pro. serial D2 bot free download windows 2003 enterprise activation key crack, creck free autocad, dwnload original cd key for wow, nba all star download, fee RollerCoaster Tycoon 3 Crack download, warcraft3 1.20 no cd crack download

Sep 03, 2008

smart movie with keygen free, free pokemon gba download, tiberian sun hacker codes, crack game siemen, download battlezone full for free, game hacks ragnarok, fifa 06 manager cd2 clone torrents, samsung unlock free codes 820, smart movie with keygen free, Cd key gens Star Wars Empire at War, free pro invision skins, p900 games cracked download, 3Gp video converter free license, download full version partition table doctor torrent, fifa 06 manager cd2 clone torrents, crack game siemen, Trial Bike Basic v 1.0 key generator, the unforgiven 2 clip, sonic mydvd 6.0 crack

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 )