Build a Cat Photo App - Step 14

Tell us what’s happening:

So in the code below you see i added the href=(link) for the code so the hint says you need a new anchor element but where do i add it?

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 href=(https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg) 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/141.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 14

My hint is located here

Sorry, your code does not pass. Hang in there.

There should be a new anchor element in the first p element.

This is not the correct syntax for an attribute. The syntax should be attribute=”value”.

To turn the text ‘cute cats’ into a link, you need to enclose that portion of the text between a pair of anchor (a) tags. The href attribute should go inside the opening a tag.

its blue on the eidotr

Ok but the syntax is still wrong

the color in the editor does not say if it’s wrong or correct, the colors in the editor highlight different parts of the HTML syntax

Has your issue been resolved ? Or do you have any error in your code ?