Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

Says my anchor needs to be cute cats even though im pretty sure it already is because on page ‘cute cats’ link worked.

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

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 <a> 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/133.0.0.0 Safari/537.36 Edg/133.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Welcome to the forum :wave:

This is the syntax for an anchor link:

Please click <a href="http://test.com/">this link</a>.

Notice the spacing. There is only 1 space between “click” and “this”. There is no space between “link” and the period. Look at your text and imagine there was no HTML. There should only be 1 space between words like normal text.

Also note how the brackets are placed.

This isn’t a valid anchor element.

See this example from a previous step: