I would restart the step to get the default HTML back as you have added things you weren’t asked to add. The instructions say:
“In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by placing these words inside of opening and closing anchor (a) tags.”
So the only thing you should add are opening and closing a tags, wrapped around the words “cat photos” in the p element.
hi there, welcome to the forum.
First please click on Restart Step because I think you have managed to confuse yourself enough that it is better to start from scratch.
Once the code is back to the original format you will see this:
<p>Click here to view more cat photos.</p>
<a href="https://freecatphotoapp.com">cat photos</a>
The request here is to make the last 2 words of the paragraph into a link.
So the last two words of the paragraph here are “cat photos”.
Do you know how to turn just these two words into a link?
(Hint: the answer is actually right in the code already, you did something very similar in the previous steps)