Forum Moderators: open
I recently noticed that the site currently ranking #1 for our best keywords has his meta tags like this:
_________________________
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
<meta name="Description" content="Leading provider of red widgets, blue widgets and green widgets" />
<meta name="keywords" content="red widgets blue widgets green widgets big widgets small widgets" />
<title>Widgets and Trinkets - WidgetMan.com </title>
<link href="styles.css" rel="stylesheet" media="screen" />
_______________________________
So, I attempted to replicate his meta structure, with the title residing below the desc. and keywords, and five days later (last night), our site is nowhere to be found!
Does anyone have an answer as to if Google cares what order they are in? It obviously isn't hurting the #1 guy, but we were only at #5 a day ago and now, we have vanished.
Any ideas?
Thanks!
By "nowhere to be found" do you mean you're not the index at all now, or are buried deep for a query for which you used to rank well? Try an advanced search like "site:example.com -asdf" (all pages in your domain that do not contain the word 'asdf') to find out what pages are indexed if you don't already know the answer to that.
This may be a possibility:
We just launched an aff. program through CJ, and I noticed when doing a search for a quote that is on our homepage that affiliates of ours (and competitors!) have taken content directly off of our site and used it in their creatives promoting our program. If a dup. content filter/penalty was tripped, what can be done to show that the content was taken from us and not vice-versa? Should I give it a few days and see what happens, or should I contact Google now before they drop all of our pages?
Note: Our site is still showing a PR7.
Thanks for all the help!
I would rely on your own empirical experience.
You have used a closing / on each one. That notation is not valid in an HTML document. It can only be used in XHTML. If you are using HTML then you must remove the closing / from each one.
Specifically the first un-nested / seen after <head> is interpreted as being </head><body> by the parser.
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.