Build a Cat Photo App - Step 37

Tell us what’s happening:

keeps saying it should be within my footer elements when i believe it already is

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="Two tabby kittens sleeping together on a couch.">
          <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
        </figure>
      </section>
    </main>
    <footer>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0

Challenge Information:

Build a Cat Photo App - Step 37
https://www.freecodecamp.org/learn/full-stack-developer/workshop-cat-photo-app/step-37

You forgot the DOCTYPE element, thr lang attribute, the head with target meta charset,you also made a mistake in line 53.

<meta *charset*="UTF-8">

<meta *http-equiv*="X-UA-Compatible" *content*="IE=edge">

<meta *name*="viewport" *content*="width=device-width, initial-scale=1.0">

<title>CatPhotoApp</title>
<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*="Two tabby kittens sleeping together on a couch.">

            <figcaption>Cats <strong>hate</strong> other cats.</figcaption>

        </figure>

    </section>

</main>

<footer>



    *<!-- User Editable Region -->*



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




    *<!-- User Editable Region -->*

</footer>
1 Like

hey @Ndeye1000 , it is great you want to help, but please check what the challenge is about before giving advice, off-topic advice are only confusing

1 Like

you need to fix the syntax error here, isn’t something missing?

Hi and thanks for advices

1 Like