I'd like to nest some links inside each other in my website's banner, something like:
<a href="/" class="hero-image">
<a href="/some-page" class="navigation-button">Some page</a>
<a href="/some-other-page" class="navigation-button">Some other page</a>
<a href="/yet-another-page" class="navigation-button">Yet another page</a>
</a>
and have the page-specific inner links show up overlaid on top of the big banner link that returns the user to the site's homepage.
I know that wrapping block content in an <a>
is legal in HTML 5, so is this legal too?