H30 (Pass): Providing link text that describes the purpose of a link for anchor elements

HTML Snippet Code
Scenario 1: Describing the purpose of the link using link text
Learn more about deque <a href="http://www.deque.com">Learn more about deque</a>
Scenario 2: Describing the purpose of the link using image alternative text
Learn more about Deque <a href="http://www.deque.com"> <img src="../../../Resources/Images/logo.jpg" height="30" width="70" alt="Learn more about Deque"/></a>
Scenario 3: Describing the purpose of the link using link text along with image
Learn more about Deque <a href="http://www.deque.com"> <img src="../../../Resources/Images/logo.jpg" height="30" width="70" alt=""/>Learn more about Deque</a>
Scenario 4: Describing the purpose of the link using both link text and image alternative text
Learn more about Deque <a href="http://www.deque.com">Learn more about <img src="../../../Resources/Images/logo.jpg" height="30" width="70" alt="Deque"/></a>
Scenario 5: Describing the purpose of each link using link text
Learn more about Amaze
Learn more about aXe
<a href="https://www.deque.com/products/amaze/">Learn more about Amaze</a><br/> <a href="https://www.deque.com/products/axe/">Learn more about aXe</a>
Scenario 6: Using a link to wrap block level elements

aXe is our free accessibility testing tool that runs right in your web browser. It's fast and easy to use. Checkout the aXe-core API for more advanced testing options.

Learn more

<p>aXe is our free accessibility testing tool that runs right in your web browser. It's fast and easy to use. Checkout the aXe-core API for more advanced testing options.</p> <p><strong>Learn more</strong></p> </a>