Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Safari/605.1.15

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

I need help with this term of code.I don’t want an answer just an explanation.Please excuse me for creating a new post about this despite several others posts of similar topics.However i feel as if none are making things clear for me.I believe that my main issue is the fact that i can not understand what exactly we are meant to do.Are we supposed to replace the words ‘cat photos’ with the link?Just supposed keep the phrase itself,while erasing the other words?Please guide me.I apologize if my words are unclear and also for the inconvenience of answering such a stupid question.Unfortunately I cannot understand.

You need to turn the cat photos into a link by wrapping the anchor element around it <a> text goes here</a>
Before the word cat put <a>, and after the word photos put </a>
In the opening anchor tag put the href attribute with the value given in the instructions.
I hope this helps.
Thank you.

1 Like

Yes!Thank you so much.For replying so quickly and for answering my,frankly,stupid question.

Really appreciate it!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.