I need help on step 12 again

Tell us what’s happening:
Describe your issue in detail here.
the hint says there a too many anchors but there’s only one? I know it wants me to turn cat photos into a link bit im confused

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    Click here to view more cat photos<a href="https://freecatphotoapp.com"</a>
    
    <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/15.3 Safari/605.1.15

Challenge: Step 12

Link to the challenge:

Hi @imtrying !

I would reset the lesson.
The lesson wants you to turn the words cat photos into a link.
The lesson wants you to nest the anchor tag inside the p element.

Maybe it would help to see an example.

Let’s say I had this sentence here

<p>I love freeCodeCamp</p>

and I wanted to turn freeCodeCamp into a link.
I would wrap the word freeCodeCamp inside an anchor tag.

<p>I love <a href="freecodecamp.org">freeCodeCamp</a></p>

Now the word freeCodeCamp is a link
Screen Shot 2022-06-02 at 8.28.23 PM

The same concept applies to this lesson.
You want the desired result to show this
Screen Shot 2022-06-02 at 8.28.57 PM

Hope that helps!

1 Like

Tell us what’s happening:
Describe your issue in detail here.
here’s what I have now. I think im getting there but now its saying I have a typo but I don’t see it

  **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="https://freecatphotoapp.com"> cat photos.</a>
   
    <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/15.3 Safari/605.1.15

Challenge: Step 12

Link to the challenge:

It looks like you are missing an end tag for the p element.
Also, the text is cat photos without a period here

When I fix those two things, then it passes

thank you so so so so much

I was also stuck here. Thanks it worked

Mind showing me how you did it
Been stuck on this for a while now

Hi, if you’re still stuck after reading this please check the rest of the forum to see if there’s any explanations that help you, also research online to learn about how html links work.

If none of that helps then please click ‘new topic’ on the forum or ‘ask for help’ on a lesson and make your own forum post. It will be much easier to help if you do that.

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