Sorta W3C HTML 4.01 Valid Button
I have have my own
button because:
Validator
- The validator has problems with JavaScript, especially when the JavaScript is used on the client-side to generate HTML on the fly. It would have validated except for the JavaScript.
- The validator thinks that when it sees &anything, that it must be a HTML entity. This is true even when you have perfectly valid HTML like:
<a href="http://www.google.com/search?hl=en&q=mike+OR+michael+yang">.
strict.dtd
- strict.dtd doesn't have "target" as a valid property for anchor (e.g.,
<a>), despite being clearly described in their docs. This is mostly fine since framesets aren't part of strict.dtd, but that means you can't set it to "_blank" to pop up a new page (e.g., <a href="foo.html" target="_blank">). I don't think there's any other way to do that.
Probably no one else cares (whether my pages are great HTML) but me :)
Links: