Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I’m not sure what it is that I’m getting wrong but I’ve been stuck on here for the past 3+ hours. I need you guys to assist me, please.

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

The original paragraph text needs to remain the same. All you need to do is turn the words cat photos into a link.

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

Example:

<p>Visit the freeCodeCamp forum.</p>
<p>Visit the <a href="https://forum.freecodecamp.org/">freeCodeCamp</a> forum.</p>

See more cat photos in our gallery.

I’m still not getting it. Didn’t I do something similar to what you’re suggesting?
So this is how the original text reads: <p
My text reads:

see more cat photos.

I don’t want you to give away an answer but I’m rlly so confused.

I even tried a different way of doing it and I’m just not winning :sob::sob:

Maybe if you’re able to explain what it is that I’m getting wrong I’ll be able to move forward

Never mind!! I just got it, I had initially put the / after the element p, I then thought maybe my punctuation is wrong and I turned them around and got it :face_holding_back_tears::dancer:t4::dancer:t4:

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