If you're hoping to have your cart pages indexed, you might want to look at doing something like this:
HTML Code:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Product name or part number (65 characters max)</title>
<meta name="description" content="Tell us about your product here (no more than 160 characters)"/>
<meta name="keywords" content="4 to 8 keywords that would most likely be used to search for your product"/>
<meta http-equiv="imagetoolbar" content="no"/>
<meta name="MSSmartTagsPreventParsing" content="TRUE"/>
<link rel="stylesheet" type="text/css" href="stylesheetfilename.css"/>
</head>
Bear in mind that you want to use the terms and phrases users are most likely to enter when searching for your product.
Most shopping carts build these dynamically using assigned fields from a database. If that's the case with your cart, this should be pretty easily done. If you're hand coding the product pages, you're in for a little work.
Some of the information you're presently including is pretty redundant and serves no other purpose but to bloat your code unnecessarily.
For example:
HTML Code:
<head>
<title>Bottom Dollor Digital Cameras: Polariod 7.0 Megapixel Digital Cameras Model: a700</title>
<link href="http://peeknsave.com/css/site.css" rel="stylesheet" type="text/css" />
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="Description" content="Super Low Priced Digital Cameras: Polariod Digital Cameras, Model: a700, Polariod 7.0 Megapixel Digital Cameras">
<meta name="Keywords" content="A700, Digital Camera Polaroid, Model: a700, Polaroid Digital Cameras, Polaroid Cameras, 7.0 MP Digital Camera, Digital Cameras, Polariod 7.0 Megapixel Digital Cameras">
<meta name="bot" content="All">
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="7 days">
</head>
Would be better, easier to read and more focused toward the product were it to look like this:
HTML Code:
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Polaroid model a700 Digital Camera</title>
<meta name="Description" content="Polaroid a700 7.0 MP digital camera with 2" TFT LCD display and 4X zoom, now just $89.99 with free shipping.">
<meta name="Keywords" content="Polaroid A700, digital camera, 7.0 MP, megapixel, 4x zoom, silver ">
<link href="http://peeknsave.com/css/site.css" rel="stylesheet" type="text/css" />
</head>
The reason I say "better and more focused" is because few users are likely to search for "Bottom Dollor Digital Cameras:", so why have it taking up space and lowering your relevance by putting it in the document title?
As you may have noticed, you're best off to keep your titles shorter than 66 characters long (including spaces) since Google trims them after that anyway. The revised title is only 42 characters long.
Your revised description is only 108 characters long (including spaces). Each word bears relevance to terms your users are likely to use to find the product. Name, model number, specific characteristics, price and important options such as color.
"Polaroid a700 7.0 MP digital camera with 2" TFT LCD display and 4X zoom, now just $89.99 with free shipping."
In the end, your modified result might look something like this:
Quote:
Polaroid model a700 Digital Camera
Polaroid a700 7.0 MP digital camera with 2" TFT LCD display and 4X zoom, now just $89.99 with free shipping.
www.yourwebstorenamehere.com- 69k - Cached - Similar pages
|
Try not to repeat keywords in the meta keywords tag as it serves no purpose and may actually hurt more than help. Plural words may be better than singular words, so the word "cameras", covers "camera" as well.
Watch the spelling! I noticed you misspelled "Polaroid" several times. It might not hurt to do it once if users are quite likely to misspell it themselves, but as a rule, make sure you're not messing up product or brand names.
No need to tell bots to spider the page, that's what they're going to do anyway. You're unlikely to get spidered more than once a week, so the "revisit" attribute is redundant.
Decide for yourself whether or not you want the pages cached. If you change prices and products frequently, it might be better not to have them cached by the SE's.
To help ensure that they get spidered, be sure to have all your products listed in your sitemap.xml file as well.
Anyway, that's what I'd do...