Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

help me please I am beginer in that atmosphfere nuuj

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more cat photos < a href="https://freecatphotoapp.com</a>in our gallery.</p>

<!-- User Editable Region -->

      <a href="https://freecatphotoapp.com">link to cat pictures</a>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Hi there,

You should reset and try again.

This time, you can look at the given example as the reference:

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

This code turn the text "freeCodeCamp" in the paragraph:

I think freeCodeCamp is great.

into a link look like this:

I think freeCodeCamp is great.

by wrapping the text freeCodeCamp inside the link tag: <a></a>
and then set the href attribute with the value "https://www.freecodecamp.org".


Now, it’s your turn to turn the text "cat photos" in the paragraph:

See more cat photos in our gallery.

into a link look like this:

See more cat photos in our gallery.

Remember to look at the preview window on the right to see what your link looks like.