Forum Moderators: mack
Does any one know if for the keywords and description meta tag you can use the meta name or Meta Http-equiv tag format? So e.g. for keyword oranges:
<meta name="keywords" content="Oranges”>
Or
<META HTTP-EQUIV="keyword" CONTENT="Oranges”>
If so what difference will it make as to which format is used?
If anyone can help me on this it would be much appreciated.
Thanks
Quentin
http-equiv attribute is used for meta elements which are supposed to complement HTTP headers - for example for a Content-Type definition: <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> For meta elements such as keywords or description, then you should use the
name attribute instead: <meta name="keywords" content="word1, word2, word3">