Looking at the source of the Hello World! box, you see this:
<p><p>This is a collaboratively edited question and answer site for <b>professional and enthusiast programmers</b>. It's 100% free, no registration required.</p></p>
There are two opening <p> tags and two closing </p> tags, which the browser interprets as this:
<p></p>
<p>This is a collaboratively edited question and answer site for <b>professional and enthusiast programmers</b>. It's 100% free, no registration required.</p>
<p></p>
and produces this validation error:
Error Line 2786, Column 177: No p element in scope but a p end tag seen.
…d enthusiast programmers</b>. It's 100% free, no registration required.</p></p>
This error is the only one preventing the front page of Stack Overflow from being "valid" HTML5.

</p>tag thus no longer being in the scope of a paragraph, then encountering the second closing</p>tag which it's not expecting anymore since the last paragraph was just closed. – BoltClock's a Unicorn♦ May 11 '12 at 21:19scopedattribute that was supposed to be on the<style>element (which I have personally never heard of before). The link to its corresponding documentation was dead, though. – animuson May 11 '12 at 21:36