I’m in step 12. The statement is this “ In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by nesting these words inside of a new anchor element.” I have tried several ways. In the same way insert the a element within the p element to create the link but it is not working. I asked for help and it would keep on saying the link for cat photos I need to create. I do not know what I am doing wrong. I have checked my typos. What am I missing or not seeing???
In the sentence:
Click here to view more cat photos.
You need to turn only the last two words into a link. So you need to nest those two words into a (a) tag. Don’t nest the dot, exclude the dot from the (a) tag.
You need to make the text cat photos (without the punctuation mark) linkable. You do this by wrapping them in an a (anchor element). In order for the words to become a link, they need to be placed between the opening tag and closing tag of an element.
Such as: <p> text </p>.