Step 63 , please find the error on <a>

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>
      
       <a href="https://www.freecodecamp.org"> freeCodeCamp.org.</a>
         No Copyright - freeCodeCamp.org
    </p>
  </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/101.0.4951.67 Safari/537.36

Challenge: Step 63

Link to the challenge:

Hi,

The coding task is asking you to turn the text freeCodeCamp.org into a link. It isn’t asking you to write that text out again, only turn the existing text into a link.

1 Like

turn the text freecodecamp.org to a link so when you click on it, it will take you to the actual website

so what to do … i already inserted the link.

after No Copyright - you should add your you should add the clickable text then you should close your anchor . In this way it will seem like
“No Copyright -freeCodeCamp.org” (freeCodeCamp.org will be underlined clickable text.)

ok let me do like that

Yes but the lesson is asking you to turn the existing text into a link, not write out new text for the link.

Think back to the earlier lessons when the lesson asked you to turn existing text into a link without writing new text. It’s asking you to do the same thing here.

can u type the code plz , im not getting the results :frowning:

1 Like

I rewrote because some part of my comment was missing. you should change and combine two line. you should put your anchor code after No copyright - . Please be careful about not to write freeCodeCamp.org twice

Hi,

I won’t give you the answer, the mods don’t allow it and it isn’t helpful for learning if I just give you the answer.

Here is some example code. This is what you are doing,

<p>

<a href=“catphotos.com”>here</a>

cat photos here

</p>

This is what the task wants you to do.

<p>
cat photos <a href=“catphotos.com”>here</a>

</p>

It doesn’t want you to type out the text that will be the link again, just to make the existing text into a link.

1 Like

come onn … i aready did as u guys said , but still showing the same error msgs …

Please show me your code and I’ll see if I can find the error for you and explain what needs to be changed.

No Copyright - freeCodeCamp.org.

Hi, when posting code please use backticks or the code formatting button as this gif shows you. Otherwise HTML code will not format correctly and I can’t check for the error.

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

Okay, you just need to remove the space and full stop at the end of freeCodeCamp.org. As the lesson isn’t asking for a space or full stop on the link text.

The code should then pass.

yay it worked… i didnt noticed the full stop and space

1 Like

you’re a nice person (if u r not a bot). thanks for the help… :slightly_smiling_face:

1 Like

Well I certainty wasn’t a robot last time I checked! But yes I’m a person not a bot. :smile:

No problem, glad I could help!

Thanks man, I guess I had a huge brain fart until I reread my whole script from top - bottom! Your the best at giving hints and not just throwing out the answer!!