Learn HTML by Building a Cat Photo App - Step 12

Currently, Cat Photos is a separate anchor/link element.

<p>Click here to view more cat photos.</p>
      <a href="https://freecatphotoapp.com">cat photos</a>

In this step, you need to put these together. Instead of having the “cat photos” repeated (one without, and one with the link), you need to remove the repeated “cat photos” and make the first one the clickable link.

Example, turn A into B:

A
<p>something something about this link.</p>
      <a href="www.randomwebsite.com">this link</a>
B
<p>something something about <a href="www.randomwebsite.com">this link</a>.</p>

On A, you can’t click this first “this link” on the sentence. With example B, the “this link” of the sentence can be clicked.

Whatever you put the < a>< /a> around, will become a link.