Build a Cat Photo App - Step 37

Tell us what’s happening:

Despite using every variation i can think of or that i have used in earlier lines of the code i still get an error message that there is either a typo or that i have omitted the correct text but to the best of my knowledge i have not. an extra set of eyes would be welcome and appreciated

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 freeCodeCamp.org 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/152.0.0.0 Safari/537.36 Edg/152.0.0.0

Challenge Information:

Build a Cat Photo App - Step 37

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-cat-photo-app/5ef9b03c81a63668521804e9.md at main · freeCodeCamp/freeCodeCamp · GitHub

you should move the text "``freeCodeCamp.org``" to be between the opening and closing tags of the anchor element like this : <a href="">freeCodeCamp.org</a>, not inside the opening tag.

Welcome to the forum @ThatGuyJay87,

Here’s a good example in your code of how the opening tag of an a element should be formed:

Notice how the value of the href attribute is enclosed in quotes; that value is the URL. Also, notice the text between the opening and closing tags — that’s what you will see when you click on the link.

Here’s a reference if you need it: HTML a tag

You may want to reset this step and try again.

Happy coding