Build a Cat Photo App - Step 37

Tell us what’s happening:

says I am missing closing tags? can anyone give me any advice

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>"freecodecamp.org "</p></a><a href>"https://www.freecodecamp.org "</a>
<!-- 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/150.0.0.0 Safari/537.36 Edg/150.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

Welcome to the forum @manwithnomotion

Turn the existing freeCodeCamp.org text into a link by enclosing it in an anchor (a) element. The href attribute should be set to https://www.freecodecamp.org.

I reformatted your code to show how the tags are nested.

You seem to have two anchor elements.

The first one is missing a value for the href attribute value. It contain an href attribute, but no value as that value is after the closing angular bracket. Also the closing tag in not nested correctly.

The second anchor element is also incorrect. It contain an href attribute, but no value as that value is after the closing angular bracket.

Please reset the step to restore the seed code.

Then take a look at the first anchor element you wrote at the top of the editor.

Happy coding

code removed by moderator

The <a> and <p> tags were closed in the wrong order.

hi @cartergray22

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge. How to Help Someone with Their Code Using the Socratic Method

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.