Re: [VE][2316] Error Message Feedback

jim boon wrote:
> Validating http://www.catchingperverts.co.uk/ 

The first 4 errors reported are a result of an unquoted attribute value, 
that needs to be quoted because it contains a special character.

<LINK href="http://www.head4it.com/aubergine/style2.css" type=text/css 
rel=stylesheet>

Attribute values that contain '/', or other special characters, need to 
be quoted.  Unless you're well aware of all the characters you can and 
cannot use in unquoted attribute values, it's best if you always use 
quotes.  You should find that quoting all attribute values in the 
document will fix many other errors too.

<LINK href="http://www.head4it.com/aubergine/style2.css" type="text/css" 
rel="stylesheet">

The rest should be fairly self explanatory.  Please make sure you read 
all the error descriptions and any referenced help documents, and try to 
fix the errors yourself.  If you still have trouble, please be specific 
about which errors you don't understand how to fix.

-- 
Lachlan Hunt
http://lachy.id.au/

Received on Wednesday, 7 September 2005 05:11:32 UTC