Error on my site

Soldato
Joined
6 Jan 2006
Posts
3,407
Location
Newcastle upon Tyne
[SOLVED] - Error on my site

Just busy finishing off my site and Ive got some errors on it. Ive used an include for the meta data and the css, but cant see any error?

www.rwco.net

Code:
<!--#include virtual="/common/meta.html" -->

I assume the error is coming from www.rwco.net/common/meta.html but I dont know what is the problem.

Thanks for any help, Mark
 
Last edited:
Do you mean validation errors? If so, the problem with the meta-tags is the unescaped ampersand (&) before the word 'Co'. Ampersands have a special meaning in HTML, as they are the starting identifier of all character entities/references like &pound; and &#39;. So you need to escape ampersands similarly, to &amp;

Code:
<meta name="keywords" content="RWCO, RW[COLOR=Yellow][B]&amp;[/B][/COLOR]Co, Chartered ...
 
It wasnt validation errors I was referring to but it turns out the error in IE is for the same reason.

So thanks for the help :)
 
Back
Top Bottom