So Step 12 wants you to: " The p element should show the same text in the browser, but the words cat photos should now be a link"
The original text is: <p>Click here to view more cat photos</p>
You had the <a> (link code) below the <p> code, however, that is extra text that shouldn’t be there. You need to make the “cat photos” in the <p> code into a link using the code you wrote below the <p> code.
To do this, copy the opening <a href="http://catphotos.com"> code before “cat photos” and put the closing </a> after it, like so:
<p>Click here to view more <a href="http://catphotos.com">cat photos</a></p>