vote up 4 vote down star
2

What's the recommended way to structure html that includes navigation so it's still SEO'able and accessible.

For example, should the structure be more like that of a document:

  1. Skip to content (link, hidden by CSS)
  2. Navigation
  3. Content
  4. Other content (right hand panes etc)

or:

  1. Skip to navigation (link, hidden by CSS)
  2. Content
  3. Navigation
  4. Other content (right hand panes etc)

Obviously CSS is used to control the layout, but bots and screen-readers ignore the CSS.

flag

6 Answers

vote up 5 vote down check

I've been asked to move the navigation after content by a client before, but I don't think it helped them much. I generally follow the first structure you mention above.

Some random tips:

  • Keep your markup standards-compliant, valid and simple.
  • Don't stuff keywords or anything.
  • Treat headings like they should be treated. Make sure there's only 1 h1 tag. Use headings sparingly across the page (Google - in the PDF download).
  • Use title attributes on anchors and alt attributes on images (but only if the image needs a text equivalent for some users).
  • Use rel="nofollow" to direct PR juice to pages you really want them to go to.
  • Keep content unique for each page.
  • Use Google webmaster tools and MSN and Yahoo!'s equivalent.
  • Build, submit and maintain sitemap.xml files.
link|flag
Great tips, +1. Thanks. – Kieron Mar 12 at 13:40
All good advice! – Lazarus Mar 12 at 13:40
Could you explain further about the headings? I'm only allowed one H1, but I can have as many H4s as I want? Really? – Ambrose Mar 12 at 21:22
The heading thing varies across the web. I've changed what I wrote because I think that was a bit extreme really. I've added a link to Google's webmaster blog and on that page there's a PDF download. Check that out. Page 14 talks about headings. – dylanfm Mar 12 at 22:08
vote up 5 vote down

Any page that doesn't have it's content stashed away in Flash or similar is SEO'able. The web crawlers tend to strip everything and read the page as a text stream. Some pay attention to your keywords, their use in the body text, H1 & H2 tags, page title and even domain name but I don't think they are affected by the order of page structure.

link|flag
vote up 1 vote down

Reduce everything else other then the content to as minimum as possible.

Very short navigation, add a link to full navigation page / or / load it by AJAX.

No "Other content". If you put anything on the page, they must be related. In addition, they should be sorted by their relation.

link|flag
vote up 1 vote down

It's generally considered to be "best" to have your content as close to the top of the page as possible. So technically, your second example is best. The skip to content link is a nice touch for screen readers though, and that state of CSS layouts being what they are, no one would begrudge you putting some simple navigation at the top of your document. I certainly don't think it would hurt your Google PageRank.

link|flag
vote up 1 vote down

As a screen reader user I don't care where navigation is on the page. The thing that helps the most is to have content listed by heading, for example this question is at an h2 level, and the answers start at the next h2 level. Screen readers offer keys that allow you to skip by heading so I find that heading navigation is quicker then finding the skip navigation link and pressing enter on it.

link|flag
Awesome answer thanks. – Kieron Mar 12 at 17:10
vote up 0 vote down

The best thing you can do is move your content as close to the top of the page as possible. I would suggest this structure:

  1. Skip links
  2. Content
  3. Other content (right-hand panes and such)
  4. Navigation
link|flag
I read somewhere else that the content should be at the top, and then someone started arguing that it doesn't really matter (in the context of crawlers)...why do you think that the content at the top is better? – Kieron Mar 12 at 13:36
I read that few web crawlers are smart enough and calculate the ACTUAL rendering position and area on the page, and rate blocks base on their position. Few another, may do analyst on the website structure and guess the key content area. – Dennis Cheung Mar 12 at 13:56
Content at the top is best for accessibility. – Andrew Hare Mar 12 at 14:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.