Learn HTML by Building a Cat Photo App - Step 63

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <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>cat nip</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>
      <section>
        <h2>Cat Form</h2>
        <form action="https://freecatphotoapp.com/submit-cat-photo">
          <fieldset>
            <legend>Is your cat an indoor or outdoor cat?</legend>
            <label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor" checked> Indoor</label>
            <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
          </fieldset>
          <fieldset>
            <legend>What's your cat's personality?</legend>
            <input id="loving" type="checkbox" name="personality" value="loving" checked> <label for="loving">Loving</label>
            <input id="lazy" type="checkbox" name="personality" value="lazy"> <label for="lazy">Lazy</label>
            <input id="energetic" type="checkbox" name="personality" value="energetic"> <label for="energetic">Energetic</label>
          </fieldset>
          <input type="text" name="catphotourl" placeholder="cat photo URL" required>
          <button type="submit">Submit</button>
        </form>
      </section>
    </main>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

Challenge: Learn HTML by Building a Cat Photo App - Step 63

Link to the challenge:

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

please help with step 63

Can you explain more? What errors are you getting? Is there something you are not understanding? The more you can explain the issue the more we can help

CHALLENGE

Step 63

Nest a p element with the text No Copyright - freeCodeCamp.org within the footer element.

MY CODE

No Copyright -freeCodeCamp.org

## Test

FEEDBACK
Sorry, your code does not pass. Try again.

Hint

Your p element’s text should be No Copyright - freeCodeCamp.org. You have either omitted the text, have a typo, or it is not between the p element’s opening and closing tags.

Thanks for that

So the directions say

“ Nest a p element with the text No Copyright - freeCodeCamp.org within the footer element.”

Why do you have a link in the footer? That was not mentioned in the directions. All you need to do is add a paragraph element inside the footer with the text “ No Copyright - freeCodeCamp.org

I recommend resetting the challenge to get everything back to where it should be first

Thank you for feedback,
The situation now, please assist on how to rest

<footer>
      <p>No Copyright -freeCodeCamp.org</p>
      
    </footer>

Test

Sorry, your code does not pass. Don’t give up.

Hint

Your p element’s text should be No Copyright - freeCodeCamp.org. You have either omitted the text, have a typo, or it is not between the p element’s opening and closing tags.

You need to add another space after the - and before “free”

Thank you very much, I have been here hours now.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.