Learn HTML by Building a Cat Photo App - Step 12

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

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>
      <p>I think <a href="https://freecatphotoapp.com/">cat photos</a> is great. </p>
      <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 mobile information:

MI 9 - Android 11 - Android SDK 30

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

Link to the challenge:

Welcome to the community!

This is not in the instructions.

Here is an article that may help you with this lesson and many more.

2 Likes

Like @anon42932716 said, this is not the instruction its just an example of how to link words in a paragraph. Reset the step so you get the original paragraph of ‘click here to view more cat photos in our gallery’ and surround the words ‘cat photos’ in <a> tags just like you did when you changed you element:

2 Likes

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

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>
      <p>I think <a href="https://freecatphotoapp.com/">cat photos</a> is great. </p>
      <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 mobile information:

MI 9 - Android 11 - Android SDK 30

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

Link to the challenge:

Delete this line. The instructions didn’t ask you to add it.

2 Likes

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