Let's say I have a list of articles on a preview page of a blog. I want the whole area of each entry to be clickable. In HTML5 this is a possible solution with valid markup:
<a href="details/mypost">
<article>
<header>
<h1>My Post</h1>
</header>
<p>This is just the teaser. Read more here …</p>
</article>
</a>
My questions are:
- Is this semantically a link or an article or somehow both regarding the w3 defintion?
- How is this content read by search engines and screen readers? Is it just a link or do they treat it as an article?