Build a Cat Photo App - Step 37

Tell us what’s happening:

it tells me the text should be “freeCodeCamp. org” but when I delete the no copyright part it tells me that I need to include it, once ive included it, it tells me the text should be “ freeCodeCamp. org”

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>
<p>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

    </footer>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 37

You are not making the sentence its asking for the link. Here is what you currently have as the link text

No copyright - freeCodeCamp.org

The lesson asks for the link text to be

freeCodeCamp.org

So. Where do you need to move your anchor tag to make that be the link text without removing any text from the challenge

Hi @zuming.liang3.141592

Only part of the text in the paragraph element should appear as a link.

At the moment, the whole text is displaying as a link in the browser preview.

Happy coding

Hi buddy, In order to convert any word into a link we need to do wrap it inside an anchor tag.

<p>This is the <a href="link address">world</a> of coding.</p>

See this how we can do convert the word inside p into a p tag

Hope this helped.