I'm stuck on step 12 HTML I don't know what I am doing wrong

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

  **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 <a href="cat photos."</a></p>
     https://freecatphotoapp.com cat photos
    <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; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 12

Link to the challenge:

Hi @mulandikelvin772,

and welcome to the forum.

put the link"https://freecatphotoapp.cm" inside the href, and the text cat photos between anchor elements,

Thank you. I will try again.

when I put the anchor a element around the word cat photos inside the p element and then I do this <a href=“https://freecatphotoapp.com” I’m told that I should have only one a anchor element or I have a typo what could be the problem

Hi again, you can do it like this.

<p>Click here to view more <a href=" ">cat photos</a>.</p>

@mulandikelvin772 We really need to be able to see your actual HTML so we know exactly what you are doing.

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key.

And be sure to include all of the HTML in the editor, not just the line you are working on.

Thank you it worked…I was able to see where I was going wrong

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