CSS Validator button, not XHTML Valid

Hello.
We validated an XHTML page and CSS stylesheet, when we added the CSS
stylesheet button, our page was no longer Valid.

<p>
<a href="http://jigsaw.w3.org/css-validator/">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!">
</a>
</p>

The IMG tag is not closed, and thus, will break the XHTML validation
used on your website.

Should be
<p>
<a href="http://jigsaw.w3.org/css-validator/">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" />
</a>
</p>


Regards,

--
Joakim Lindkvist, Customer Relations
Moxiecode Systems AB
Torggatan 2, 931 32 Skellefteċ, Sweden
Mobile Phone: +46 (0)70 39 55 170
Office Phone. +46 910 71 57 31
http://www.moxiecode.com

Received on Tuesday, 28 September 2004 14:25:27 UTC