<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.
