Forum Moderators: mack
AFAIK the order is not important.
Also, keep in mind that there are other SE's, that do use the meta-keywords.
No one knows for sure how important meta-keywords and meta-description are for PageRank, but most think they are totally irrelevant.As for PageRank, meta-keywords and meta-descriptions are VERY unlikely to have any influence. As for ranking in the SERPs, it could help for searches on Google to have a meta-description. It won't hurt to have meta-keywords, but most major search engines will ignore them.
PageRank is only part of the Google algo - it's the part dictated by the now famous 1997 paper, Anatomy of a Large Scale Hypertextual Web Search Engine [www-db.stanford.edu] from Google founders Sergey Brin and Larry Page.
And everyone's comments here are true -- PageRank definitely does not look at meta-tags. In fact, PageRank has nothing to do with words or content in any fashion, it just looks at links.
For the sake of clear communications, I think it's important to use the word "PageRank" (PR for short) precisely, and not just to mean "Google's Ranking" on a search.
Google's results today depend on many factors in addition to PageRank - but meta tags still don't mean much in that part of the Google alogrithm either, as noted by the folks in this thread.
also see here:
[webmasterworld.com...]
Your document should begin with a !DOCTYPE (tells the browser what sort of HTML is in the file) and a title element:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> Your Title Here </title>
For your page to actually be valid you MUST declare the character encoding (lets the browser know whether to use A to Z letters (latin), or Chinese, Japanese, Thai, or Arabic script, or some other character set) used for the page, with something like:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
There are also other schemes such as UTF-8 and many others.
It is also a good idea to declare what language the page is in, using:
<meta http-equiv="Content-Language" content="EN-GB">
The language and country codes come from ISO 4217 and ISO 3166. This is useful for online translation tools as well. Change the "en" and "gb" to whatever language and country you need.
You need the meta description tag, and it is useful but not vital to have a meta keywords tag:
<meta name="Description" content=" Your Description Here. ">
<meta name="Keywords" content=" your, keyword, list, here ">
The last parts of your header should have your links to external style sheets and external javascript files:
Use this if the stylesheet is for all browsers:
<link type="text/css" rel="stylesheet" src="/path/file.css">
Use this for style sheet that you want to hide from older browsers, as older browsers often crash on seeing CSS:
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"> @import url(/path/file.css); </style>
Use this for the javascript:
<script type="text/javascript" language="javascript" src="/path/file.js"></script>
End the header with this:
</head>
<body>
and then continue with the body page code.
It is as simple as that.
Code within the page:
I use: <a href="somepage.html" title="some text here"></a> for links.
I use <img src="somefile.png" alt="some text"> for images.
Headings are done with <hx></hx> tags, properly used from <h1></h1> downwards.