Description
In the last example for Section 4.3.10 ("The Address Element"), shouldn't the line "For more details, contact" be outside of (before) the ADDRESS element? The specification states that "The address element must not contain information other than contact information."
Original example:
<footer>
<address>
For more details, contact
<a href="mailto:[email protected]">John Smith</a>.
</address>
<p><small>© copyright 2038 Example Corp.</small></p>
</footer>
Corrected example:
<footer>
<p>
For more details, contact:
<address><a href="mailto:[email protected]">John Smith</a></address>
</p>
<p><small>© copyright 2038 Example Corp.</small></p>
</footer>
Also, the SMALL element should probably be removed from the example, since it is deprecated in favor of CSS.