I can't understan

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

  **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 - </p>
          <a href="https://www.freeCodeCamp.org">freeCodeCamp.org</a>
  </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/103.0.5060.114 Safari/537.36 Edg/103.0.1264.49

Challenge: Step 63

Link to the challenge:

I don’t get this instruction, I believe I’ve been giving the correct code…my (a) element is nested withing my footer but that’s the only hint I keep getting for step 63

No Copyright -

freeCodeCamp.org

that is what I have

The anchor element should still be inside the p element

you mean the freeCodeCamp.org?

Done that, still getting the very same hint

Please post your updated code.

No Copyright - freeCodeCamp.org

freeCodeCamp.org

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.

```
Your code goes here
```

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

thanks for that tip…I’m still new to all this so I’m slowly learning…let me try that

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

Alright, you should replace this text here :

with the anchor link that you have below :

don’t I need to close the (p) element?

Yes, you need to close the p element, and keep the - before.

I’m sorry, I think I’m completely lost, do you think you could just write it out for me cause I really believe I’ve been doing the right thing and I’m totally fried from this one, I been on this step for about a week now

Please, just restart the step and only wrap the a tags around the text freeCodeCamp.org.
It should pass. Don’t add any p tags as they are already there.

You need to make the text “freecodecamp . org” that is inside the paragraph (or the <p></p> element) into a link. And in order to do that you need to surround it with an anchor tag (or the <a> </a> tag) and simply provide it with the link that the test tells you to. Keep in mind that you need the surrounding anchor tags to be inside the p tags for this to work and also only surround that specific text.

I’m starting to feel slow at this point, isn’t that what I’ve done right here

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

It’s fine. You’re doing good. You have something wrong here:

thank you so much…I finally got it…thank you for walking me through it

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