Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

i am having trouble anchoring this correctly. i am curious as to what i am doing wrong.

Your code so far

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

<!-- User Editable Region -->

      <p>Everyone loves<a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg" </a>cute cats online! </p>


<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Hey buddy just completed this one myself and it gave me a little trouble.
Here we are wanting to make sure we anchor the link in the correct place. Check your spacing after “Everyone loves”.

Also the (a) element before “online” needs closed with. .

Check spacing…

3 Likes

you need to put “cute cats” in anochor tag

1 Like

i appreciate the help

1 Like

here you have an example of an anchor element inside a paragraph element, you need to do something similar

i appreciate the help though i didn’t know that i had to anchor the link and cute cats until i just figured it out

1 Like

Hey Buddy, Nice attemp, Well Done, But you need to change a little only !!!

1st do add some space between these…

2nd do add closing bracket here >

3rd do add your closing anchor tag </a> after your cute cats as you need to make these text as link

After doing these changes, you will’be able to pass this test…

Hope You Understand !!!