Build a Cat Photo App - Step 37

Tell us what’s happening:

Its telling me i have a typo but i dont think i do unless im just being dumb and not seeing it

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
        <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
        <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
      </section>
      <section>
        <h2>Cat Lists</h2>
        <h3>Things cats love:</h3>
        <ul>
          <li>catnip</li>
          <li>laser pointers</li>
          <li>lasagna</li>
        </ul>
        <figure>
          <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
          <figcaption>Cats <em>love</em> lasagna.</figcaption>  
        </figure>
        <h3>Top 3 things cats hate:</h3>
        <ol>
          <li>flea treatment</li>
          <li>thunder</li>
          <li>other cats</li>
        </ol>
        <figure>
          <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
          <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
        </figure>
      </section>
    </main>

<!-- User Editable Region -->

    <footer>  <p>No Copyright - <a href="https://www.freeCodeCamp.org"</a> </p>

<!-- User Editable Region -->

    </footer>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 37

Do not forget to close your opening tag.

Additionally there seems to be text missing. In the prompt, it said

Turn the existing freeCodeCamp.org text into a link by enclosing it in an anchor (a) element.

With that information, what text do you think should be inside of your a element?

when i close the opening tag it isnt a link anymore and i cant see what im doing wrong

you need to move the closing tag so that it wraps the required text, I mean you also deleted the required text, so maybe you should rewrite it inside the anchor element

1 Like

After your Link you need to include the Text.

For example
This is the Link: “https://www.freeCodeCamp.org
This is the Text: freeCodeCamp.org

You also have an additional space after your closing tag.