Forum Moderators: open
Here is what I am using now:
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
<META name=owner value="My Name">
<META name=categories value="My industry">
<META content=My Website Description=Description>
<META content=My Keywords=Keywords>
thanks
http-equiv or a name attribute, followed by a content attribute. You should always place the values in quotes, and a trailing slash is only required of you are using XHTML rather than HTML. I assume that ISO-8859-1 is the correct charset for your site. Don't forget the most important part of the document head which is the title element. So you get: <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>The title of my page</title>
<meta name="description" content=My Website Description">
<META name="keywords" content=My Keywords"> The following are not only incorrect but entirely unnecessary - just delete them:
<META name=owner value="My Name">
<META name=categories value="My industry">
So:
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
<title>The title of my page</title>
<meta name="description" content="My Website Description" />
<meta name="keywords" content="My Keywords" />
Meta tags and more - from <head> to </head> [webmasterworld.com]