In XHTML, all tags must be closed
Again, something a good Web designer does anyway. But if you’re one the few people who still leaves <p> tags unclosed, now’s the time to start closing them.
Example of valid HTML:
<p>This is a paragraph
Equivalent in XHTML:
<p>This is a paragraph</p>
|