Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There seems to be huge number of meta tags you can set. I'm guessing that some of them are more important than others.

What are the most important metatags to supply and why?

Do I even need meta tags? (looking at the stackoverflow homepage there are none)

share|improve this question
1  
Isn't this more of a ServerFault thing? – David Thornley Jul 7 '09 at 14:01
2  
@David Thornley Why is web development not so question? Its a programming issue, surely? – John Nolan Jul 7 '09 at 15:13
Add tag "seo" (for Search Engine Optimization)? – Peter Mortensen Jul 30 '09 at 13:59

7 Answers

up vote 9 down vote accepted
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">

To tell the browser what the content type and encoding is

<meta NAME="ROBOTS" CONTENT="NOODP">

See http://www.mattcutts.com/blog/google-supports-meta-noodp-tag/ for why

<meta name="description"...>

Obvious

<meta name="keywords"...>

Google do not use this, but other search engines may

<meta HTTP-EQUIV="Expires" CONTENT="Tue, 20 Jun 1995 04:13:09 GMT">

If you know when you like this page to be expired from cache

share|improve this answer
1  
what about <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />/ man? – Dan Jan 28 '11 at 11:05
X-UA is for your IE browsers its related to compatibility .. – Learner Apr 5 at 6:55

I'll use my same answer from this question:

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. Excuse me: Bing).

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.

share|improve this answer

The most important meta tag you should use is:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

adjusted to suit. This ensures that, if you ever need to transmit that HTML document via something other than a web server (e.g. working on it locally, sending as an attachment), the user-agent is aware of its mime-type and character set. Just make sure your server headers agree.

share|improve this answer

the description metatag will be used by google as description of your site. I think it's the most important.

I think that the verify-v1 meta is important. It makes possible to use Google Webmaster tool

share|improve this answer

The best SEO is a website that meets the needs of its target users effectively. To do that you need to have a site that has something in it that people can use, want, or need. This is value and its the most important thing. It can be anything from good articles to entertaining video or a useful download. Tags support good content but cant replace it for SEO. If the content is good enough no tags are needed. Trust me when I say, if your site has something, anything people want or need, that they can't get just anywhere, your site will do well in all regards, tags or no tags. If your site is boring and has no value it will fail, tags or no tags.

share|improve this answer

GoogleBot ignores meta information only trusting the page content itself rather than content descriptors. So, the usefulness of certain tags may be limited.

share|improve this answer
1  
Google DOES however use meta information in displaying the page in it's listings, so it's not entirely useless. – Matthew Scharley Jul 7 '09 at 13:37

I would make sure you have a title, description, keyword, and revisit-after tag in your web pages. Although Google doesn't weigh keyword tag as much, it may still be used by smaller search engines.

share|improve this answer

protected by Marc Gravell Jun 3 '11 at 11:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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