View Full Version : How many keywords are acceptable in a meta-tag?
flier1952
10-10-2005, 18:54/06:54PM
Hi guys,
I have read so many different articles on meta-tags that seem to contradict each other it's mind boggling. In regards to keywords is there a limit to the number of words or key phrases that can be used. I believe the reference is really characters?
I have seen reference to 250 char's max and the I view the source code on some competitor sites and they have over 1,000.
I have stuck to 250 and then went to section and product pages to add other keywords and phrases so if the SE's index those pages the words are more relevent to those,
Is this okay?
Connie
10-10-2005, 19:36/07:36PM
If your talking about the key word meta tag I would keep it under 250 characters.
For the most part that tag is not used by SEs. However, if you use it, it should be used correctly.
Forget what you see other sites doing. Every site is unique. A site may be Spamming but not banned yet.
Work on your site. Make it unique for your visitors.
Use a title, description, and keywords that fit the page. They should be unique for every page to describe what is on the page.
flier1952
10-10-2005, 19:40/07:40PM
Understood.
Thanks
:cheers:
g1smd
10-10-2005, 19:49/07:49PM
Your document should begin with a !DOCTYPE (this tells the browser what sort of HTML is in the file) followed by the <html> and <head> tags:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
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 human 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 a <title> element for the page:
<title> Your Title Here </title>
This is displayed at the top of the browser window, and stored as the name of the bookmark if someone bookmarks the page URL in their browser. Most importantly, it is the <title> tag that is indexed and displayed by search engines in the search results page (SERPs).
You need the meta description tag, as this is very important for search engines, 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 ">
Most search engines do obey the robots meta tag. The default robots action is index, follow (index the page, follow all outbound links) so if you want something else (3 possibilities) then add the robots tag to the page in question. If you want to exclude whole directories then use the robots.txt file for this instead of marking every HTML file with the tag.
<meta name="robots" content="noindex,follow">
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.
flier1952
10-10-2005, 21:34/09:34PM
This is very helpful
Thanks
vBulletin® v3.8.3, Copyright ©2000-2010, Jelsoft Enterprises Ltd.