Build a Cat Photo App - Step 14

Tell us what’s happening:

I think I have implemented the href attribute correctly. I have re-read the instruction and checked questions already asked on the topic. But I don’t understand where I have gone wrong. Any guidance would be great.

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/curriculm/cat-photo-app/running-cats.jpg">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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Safari/605.1.15

Challenge Information:

Build a Cat Photo App - Step 14

Hi there, welcome to the community! :waving_hand:

You’re almost there, but there are 2 main issues in your code:

Issues:

  1. Extra space before Everyone, You should remove that space to match the expected output.
  2. Typo in the URL, You wrote curriculm instead of curriculum. Double-check the spelling in the link.

Keep going — you’re doing great!