djmzfKnm
djmzfKnm

Reputation: 27195

What are the most Important Usability, Accessebility and SEO guidelines?

Can anyone tell me some of the most important usability, accessibility and SEO guidelines, which must be taken into considerations while developing a good Web2.0 website ???

Upvotes: 3

Views: 215

Answers (3)

George Stocker
George Stocker

Reputation: 57907

Incidentally, there was a recent article on it.

Other good Usability articles:

While I dislike the 'horror' tone of the article headlines, the articles themselves are good practice.

Upvotes: 2

Adrian Grigore
Adrian Grigore

Reputation: 33318

SEO hint: Rewrite your dynamic URLs so that even the actual URL may be dynamic, it appears static. This allows spiders to fully index your site.

On Apache, you can do this by using mod_rewrite and there are symilar techniques for IIS.

Example:

Instead of

http://yourdomain.com/cgi-bin/getproduct.pl?id=12345

use something like

http://yourdomain.com/products/12345

As an alternative (or additional measure for those dynamic URLs you cannot rewrite), you should create a site map.

Upvotes: 2

Scott Vander Molen
Scott Vander Molen

Reputation: 6439

http://www.w3.org/WAI/
http://www.section508.gov/index.cfm?FuseAction=content&ID=12#Web
http://www.google.com/support/webmasters/bin/topic.py?topic=8522

Don't get too hung up on the "Web 2.0" buzzword. Accessibility standards have been around for a long time and are an important part of any web site.

Upvotes: 4

Related Questions