Cat photo app step 12

In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around these words.

   <p>see more cat photos in our gallery.<a href="https://freecatphotoapp.com">cat photos</a></p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

Link to the challenge:

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Did you need help with anything or was there a question you meant to ask?

Ok thank you for teaching me how to enter that in there. My question is the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around these words? I tried it so many different ways and its not passing. Could you show me what i did wrong

please click the reset button (which looks like an arrow turning).
After that you should be able to see this plain paragraph element in the editor:
<p>See more cat photos in our gallery.</p>

Notice in the middle of the text there the words cat photos?

These words should become a link.
To make them a link, you need to surround them with an anchor tag.
Opening tag should be directly on the left of the word cat.
Closing tag should be directly to the right of the word photos.

1 Like

Still does not work for me.