show/hide this revision's text 2 added 534 characters in body
<h1><a href="#">text here</a></h1>

is more correct, as HTML does not allow a block element (<h1>) within an inline element (<a>) (src). your first example will fail validation.

Generally, block-level elements may contain inline elements and other block-level elements. Generally, inline elements may contain only data and other inline elements. Inherent in this structural distinction is the idea that block elements create "larger" structures than inline elements.

show/hide this revision's text 1
<h1><a href="#">text here</a></h1>

is more correct, as HTML does not allow a block element (<h1>) within an inline element (<a>)