Uitspraak van verwijderd op vrijdag 14 juli 2006 om 00:32:
Voordeel van het werken met een xhtml mimetype tijdens development zodra de xml niet valide is, rendert je pagina niet meer. Perfect om je pagina's tiptop in orde te houden.
Leuk die standaarden maar IE doet er niet veel op en de grotere websites zijn ook lang niet valid. Waarom niet? Omdat de meest gebruikte browser er niet moeilijk over doet.
By the way, dit krijg ik bij XHTML strict:
This page is not Valid XHTML 1.0 Strict!
Below are the results of checking this document for XML well-formedness and validity.
Error Line 67 column 47: there is no attribute "target".
...a href="
http://www.e-grip.nl" target="_blank">e-Grip content management syste
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.
✉
Error Line 76 column 4: end tag for "ul" which is not finished.
</ul>
Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.