Search

Yahoo Links

Links to Site

Login Form






Lost Password?
No account yet? Register

Syndicate

Who's Online

Home
Welcome to the Frontpage
free text messaging
Search history:
Sep 08, 2008

S60 ultra mp3 1.52 cracked, F.E.A.R NOCD CRACK DOWNLOAD, satisfaction fx, mappack diablo2 download, intitle:index.of? rar HP BIOS, Adobe Photoshop CS2 3.0 Bidjan.exe, 768878, cs aim cheats download, CS Source Server RCON finder, 6230i usb data cabledriver for free

Sep 07, 2008

retrieve simcity serial number from CD, 768878, matlab cd key 7.1, crack war craft no cd, Lenon Let it be mp3, Traktor 2.51download, free driver Creative SB PCI 128 (ensoniq ES5880) windows 98, windvd 7 keygenerator download, need for speed underground most wanted clips, haker gsm flasher.zip, 3gp S60, 3gp S60 camfrog 3.4 serial keygen free adult themes k700i, KMC feat. Sandy - Get Better lirycs, condor heroes nokia, Hitman Codename 47 XP patch, CINEMA 4D .rar osx, messenger password recovery v2.8 download, download gratis video editor full VIDEO

Sep 06, 2008

Unlock Codes Calculator for panasonic GD 93, speed touch 510 driver, free porno 3pg, unlocking alcatel hd series, Need for Speed Most Wanted mods donwload, download icoo rip free, nokia-ngage filemanager.sis, Magix Foto No CD-Crack, AV VCS Gold 4.0.47 keygen, barbie serials, sevendust musicvideo free, sweet november themes nokia, vegas video 6 code, inurl:htm -inurl:html intitle: index of mp3 lux, pioneer avic d1 hacks, toshiba program too big to fit in memory, Psiloc irRemote Control key generate, nokia camera fx keygen crack, bittorent morrowind cd crack, crack demo version nero, simple tunes 1.4 crack

Sep 05, 2008

free driver Creative SB PCI 128 (ensoniq ES5880) windows 98, skyforce full installation 6681, download Motorola Mobil Phone Tools 3.25B Deluxe, download call of duty 2 cd key, no-CD crack for hero of might and magic 3 the shadow of death, dp deluxepass.password, download driver generic hp in one scanner, mobile ring toon zipfile, crack keygen simtractor 3.10, speed touch 510 driver, australia-map.rar, warcraft3 update download, Parent directory mp3 OR wma rebecca, Cracking Rise of Nations, Prince of Persia The Sands of Time sd2 crack, beast backdoor download now free, photobase v.2.00 s60 crack, free adult themes k700i

Sep 04, 2008

crack for stronghold version1.0, free adult themes k700i, unpacked Morphine v1.2 (DLL) download, mirc /amsg remover, driver ww-600 usb infrared adapter download for xp, siemens cx65 software driver download, coreldraw 12 cz download, adobe acrobat 6.0 professional german torrent, DirectSound output, free download dc 0.401, windows xp theme nokia serie 60

Sep 03, 2008

bear share software full version, Adobe Photoshop CS2 3.0 Bidjan.exe, ultimate flash sonic cheets, free unlock for navman, poser 4 victoria3, driver ww-600 usb infrared adapter download for xp, bbc keygen, free full metal panic soundtracks download, download crak windvd 5.3, downlaod worms game, c.s hack wall 1.44, nokia-ngage filemanager.sis, mobile soni ericson, Traktor 2.51download, F.E.A.R NOCD CRACK DOWNLOAD

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 )