LEARN HTML BY BUILDING A CAT

In the previous step you turned the words link to cat pictures into a link by placing them between opening and closing anchor (a) tags. You can do the same to words inside of an element, such as a p element.

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.

I have been stuck on this question for over 30 minutes and i cannot seem to get the answer please help!

Please post your actual code and a link to the Step. Also, it helps if you tell us what about of all that text we can help explain

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

This is code I am battling with

step 12

It looks like you haven’t written any code yet. Can you show code you’ve tried or tell us about what part of the text is confusing you?

it asks me to add a tags around the words cat photos so I understood this as <a href="Cat photos"a/>

I know what the instructions are. I can read the instructions. I cannot read your brain.

haha yes i get that but Im explaining how my brain saw it ?

Ah. I got confused

Where would you put that

 <a href= "https://freecatphotoapp.com">link to cat photos<a/>

But that’s the anchor element from previous steps.

You need to be making a change inside of the p element

im completely lost haha

You made zero changes to the p element. The instructions say you must make changes inside of the p element.

Can you identify the p element?

  <p>See more cat photos in our gallery.</p>

this is p element

You are supposed the enclose only the text cat photos in the p element with an anchor element(<a>).

well the

is p element

Yes, this is the p element. You need to add an anchor element inside of the text here

Try it this way: mod edit- removed solution