Don’t add quotes around cat photos. The text in the p element should stay exactly the same. You just want to add the a tags around cat photos to turn it into a link. You did do that, but you forgot to add the href attribute to the opening a tag.
Also, do not change anything else in the HTML. For example, you changed the text in the link below the p element. This will cause you to fail the step. You might want to reset the step to get the original HTML back and then try again.
This step asks us to turn only the two words cat photos into a link.
It requires this to be completed without anything else being changed in the present p element statement, nor any of the code that is presented at the beginning of the step.
Below is the example for us to use.
<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>
Notice how the anchor only nests freeCodeCamp in the example.