views:

171

answers:

2

what meta-tags in the header of an (x)html page should be enough for SEO whitout overload it?

A: 

<meta name="description"> can be used to display a short summary of the site in search engine results, although that's not strictly ‘SEO’.

No others are necessary; in particular <meta name="keywords"> is a no-longer-relevant waste of your time.

bobince
+1  A: 

A few years back, meta tags were important to search engine optimization. However, they've been abused and are generally ignored by almost all search engines (including Google, Yahoo and Live search).

The most important tags for SEO that you can include in your (X)HTML are the <title> and <meta name="description"...> tags.

  • <title> should generally be what you'd want the search engine to name your page in it's listing.
  • <meta name="description"...> can sometimes give the search engine a basic idea of how to describe your page when indexing it.

However, using these two tags will not necessarily make a difference in increasing your site's visibility on a search engines listings. For more information on that aspect, Google has a nice section on SEO on their site.

T Pops