Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
FACED struggle and can not do this step :
Your comment should be below the h2 element and start 6 spaces over from the start of the line.
I NEED TO KNOW HOW TO PASS THIS

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
      <p> Click here to view more cat photos 
        <a href= "https://freecatphotoapp.com" > cat photos </a>
      
      </p>
      
    <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 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36

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

Link to the challenge:

Instruction says: “In the text of your p element, turn the words cat photos into a link.”
Means: behind the word “… view” the link element will do fine.
Leave the dot of that textsentence behind the closing a-tag and delete the second cat photos.

doesn’t work .could you give me clarification ?or solution

thanks i did it . i solve te code

1 Like

The leadership do not want us giving solutions, we are allowed to give hints only.

If you place your your opening a-tag directly into the text of the paragraph ( behind the" click here to view") you can wrap the last two words of this text (“cat photos”) by placing a closing a-tag behind them. If you look closer there is a dot at the end also. That should end up between closing a-tag and closing p-tag.

1 Like

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