Valid XHTML 1.0

Hello,
I don't know if it was already mentioned in this list, but the html sniplet
you get after validating al valid xhtml strict file is following:
----------
  <p>
    <a href="http://validator.w3.org/check/referer"><img
        src="http://www.w3.org/Icons/valid-xhtml10"
        alt="Valid XHTML 1.0!" height="31" width="88" /></a>
  </p>
----------
but this is not valid xhtml strict because <img /> contains the presentation
attributes height and width. It would be easy to replace this by
----------
  <p>
    <a href="http://validator.w3.org/check/referer"><img
        src="http://www.w3.org/Icons/valid-xhtml10"
        alt="Valid XHTML 1.0!" style="height:31;width:88;" /></a>
  </p>
----------

with best regards

Lars Trieloff

Received on Monday, 14 January 2002 00:46:22 UTC