Learn HTML by Building a Cat Photo App - Step 63

Tell us what’s happening:
Describe your issue in detail here.
I am absolutely struggling because I have tried so many different variations of my code and the hint keeps saying the same thing.

" 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."

this is my code: <footer <p No Copyright - freeCodeCamp.org>


  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</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>
  <footer <p No Copyright - freeCodeCamp.org></p>
  </footer>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15

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

Link to the challenge:

above is from line 8, I remove a href so I hope you a hint to solve it

The correct way to write any element in HTML is to use < and > around the tag.
So:
</footer Is not valid
Neither is <p
Try to fix these and see if that helps.

I updated my code and it stills says the same thing

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

If you still need help please post the new code

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

it won’t let me post the new code but I made the proper ssadjutments by putting the text in between the

elements open and closing tag

It shows up now in your previous comment.

you need space between -
No Copyright - freeCodeCamp.org
and better remove the space after <p>

okay thank you so much o my new code is

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

Instead of typing the text, just copy paste it from the exercise. (You need to be exactly matching with spaces etc)

btw my new code has a pace Between " no copyright - free code camp.org. I jut made a typo in the previous comment

You cannot put tags inside of tags like that. Every single tag must have separate < and >

Edit, woops, newer posts didn’t show up for me at first

for future reference:
When you attempt a challenge, your code is compared against some predefined inputs to make sure your code is correct or not.
In terms of text, the tests are super strict meaning, even if you’re missing a space, they will not pass. So, make sure you either, copy paste text from the challenge itself as @hbar1st suggested, or pay extra attention to what you’re typing.

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