The goal in this challenge is to make a text that reads:
“Click here to view more cat photos.”
(And the “cat photos” part should be a link.) Since this is not what your code currently generates, it gives you a “not passed” message. You need to figure out how to remove that extra “cat photos” and replacing it with the link. I think you can figure it out
In the future, make sure you use the “Preformatted text” button in order to paste a code (the icon of the button is: </>, and it next to the button where you insert images). This makes it much easier to read than to open a picture. I would like to challenge you to try to use it here for the new code, to get some practice using it
Regarding the challenge, they want the punctuation mark to be there too:
“Click here to view more cat photos.”
instead of
“Click here to view more cat photos”
Hey! “cat photos” should be linked to link into the a tag which is the child of p and p should consist of “Click here to view more” text. So finally it should be “Click here to view more cat photos”( this “cat photos” text should be linked)). I hope it is clear