Putting Meta Tags Code in Blogger

Asked By 10 points N/A Posted on -
qa-featured

How can we put the main keywords as meta tags in blogger?

I know that using meta tags is powerful. We use it to get higher page rank in search engines.

The problem is, I'm new using blogger.

I don't know where to put meta tags code.

Can someone elaborate this to me?

SHARE
Best Answer by Sharath Reddy
Answered By 0 points N/A #129292

Putting Meta Tags Code in Blogger

qa-featured

Welcome in blogging world. Please see this sample of adding Meta in blogger

For Description
<head>
<meta name="description" content="Tizag contains webmaster tutorials." />
</head>

For Keywords
<head>
<meta name="keywords" content="HTML, XHTML, CSS, tutorials, tizag" />
</head>

Best Answer
Best Answer
Answered By 590495 points N/A #129294

Putting Meta Tags Code in Blogger

qa-featured

Adding meta tags on your page have many uses. This can help indicate the location of the business, a brief description about the web site and its contents, and the site map which displays all the services that the site offers. Meta tags are also used by search engines for proper indexing.

Search engines gather information about the site and the tags it uses so it can easily be searched on the web. But putting the right tags on your web site still not guarantees that your web site will appear on search engines or when doing a search on any search engines.

Meta tags are not required when creating an HTML page and there are web sites that don’t use these. They only help provide metadata about the HTML page or document.

The meta tag <meta> doesn’t use an end tag in HTML pages but an end tag is required when putting this in an XHTML document. Meta tags should always be put inside the head element <head></head>. Here are some examples of meta tags:

  • <meta http-equiv="refresh" content="10" /> – this refreshes the page every 10 seconds
  • <meta name="revised" content="Dr. CAD, 1998 Nov 1" /> – this defines the last time the document was revised
  • <meta name="description" content="Available free hosting site" /> – this defines the description of the site
  • <meta name="keywords" content="movies, download, free" /> – this defines the keywords used by the site for search engines
  • <meta name="revisit-after" content="1 month" /> – this tells the search engine robots or crawlers to visit the site again after 1 month
  • <meta name="robots" content="all" /> – this tells the web crawlers to index all pages including explored links

Related Questions