Build a Cat Photo App - Step 37

Tell us what’s happening:

All my answers are wrong and I have no idea how to resolve this.

 </figure>

  </section>

</main>

<footer>

  <p>No copyright - freeCodeCamp.org

  <a href="https://www.freeCodeCamp.org"</a>

    </p>

</footer>

The link’s text should be freeCodeCamp.org. You have either omitted the text or have a typo.

Check Your Code

No copyright - freeCodeCamp.org
<a href=“https://www.freeCodeCamp.org

The link's text should be freeCodeCamp.org. You have either omitted the text or have a typo. Check Your Code

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

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 @nevena.milin!


It looks like you may have changed the starting code in areas you were not asked to change, which will cause the tests to fail. Please click the reset button to restore the original code and try again.

image


Please look at this line of code as an example of how to turn “freeCodeCamp.org” into a link.

Happy coding!

Hi Buddy, Here you need to see that if you want to make any word into a link then you need to do put that between the anchor tag like this <a>Link</a> this will get convert as link address.

Here if you’re guided to make the text freeCodeCamp.org into a link then you need to do put the word in between the anchor tag.

Hope This helped you.

removed by moderator

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.