Assign the aria-labelledby
attribute value the id
attribute value of the link element you wish to associate with it.
The engine scans all links using an aria-labelledby
attribute, and checks whether an element with the corresponding id
attribute exists on the page.
Screen reader users may fail to understand the purpose of the link.
<h2 id="header">Header</h2>
<p>Summary text. <a id="link" href="/article" aria-labelledby="link header">Read More.</a></p>