Idk how to add a element to the p element

Alright so that step seems super confusing but it isn’t. What the step is asking you to do, is basically remove the original ‘cat photos’ in the p element. So you would essentially be deleting this part of the code until it looks like this…

<p>Click here to view more </p>

Then you would add the a href into that spot from below to form…

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

And that should be it.