Search Engine Facts
Search Engine Facts

Read our back issues

December 2009

November 2009

October 2009

September 2009

August 2009

July 2009

June 2009

May 2009

April 2009

March 2009

February 2009

January 2009

December 2008

November 2008

October 2008

September 2008

August 2008

July 2008

June 2008

May 2008

April 2008

March 2008

February 2008

January 2008

December 2007

November 2007

October 2007

September 2007

August 2007

July 2007

June 2007

May 2007

April 2007

March 2007

February 2007

January 2007

December 2006

December 2006

November 2006

October 2006

September 2006

August 2006

July 2006

June 2006

May 2006

April 2006

March 2006

February 2006

Januray 2006

December 2005

November 2005

October 2005

September 2005

August 2005

July 2005

June 2005

May 2005

August 2005

March 2005

February 2005

January 2005

December 2004

November 2004

October 2004

September 2004

August 2004

July 2004

 

» Archive

 

Sitetube.com
All about planning, building and maintaining web sites.

Home   Contact   Privacy policy    Partner sites

The table trick for search engines

I've seen many Web pages that use tables to lay out a page with a sidebar for navigation. These sidebars make a Web page easy to navigate. Unfortunately, they are not so good for search engines.

Here's an example:

Product
Order
Contact
body text with keywords

The corresponding HTML code is (simplified):

<table>
<tr>
<td>Product<br>Order<br>Contact</td>
<td>body text with keywords</td>
</tr>
</table>

Many search engines emphasize keywords in the first part of the text in your HTML source. Unfortunately, with the example above, the search engine finds "Product, Order, Contact" instead of your body text with keywords.

On a real Web page, the navigation sidebar is much more complicated than in the example above so that the body text with the keywords is located in the lower part of the HTML code.

Fortunately, there's a simple trick that lets the body text come first. The trick is so easy that you wonder why so many Web pages do it wrong.

You just have to insert an empty cell. It looks like this:

body text with keywords
Product
Order
Contact

The corresponding HTML code is (simplified):

<table>
<tr height="0">
<td height="0"></td>
<td rowspan="2">body text with keywords</td>
</tr>
<tr>
<td>Product<br>Order<br>Contact</td>
</tr>
</table>

Now the body text with the keywords comes first. This means that the search engines are now able to find your keywords quickly and easily.

Note: If you use the "height=0" command in the HTML code, you won't see the empty cell. We didn't add the "height=0" in this example so that you can see what we mean.

Copyright Axandra.com - Internet marketing and search engine ranking software


Home   Contact   Privacy policy    Partner sites
October 2002 search engine articles