Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Hello, I’ve been reading the earliest post but i am stuck, any help?
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 -->

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <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 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

Don’t change the given text. Restart step. In the existing sentence:

 <p>Click here to view more cat photos.</p>

surround the part “cat photos” with ‘a’ tags:

<a href="url">text</a>

The “url” is the following address: https://freecatphotoapp.com
Pay attention to the fact that a dot after the word “photos” has to be found after the closing ‘a’ tag </a>. The dot is not hyperlinked.

1 Like

Tell us what’s happening: STILLVERY STUCK :frowning:
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 -->

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <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 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

please don’t create a second topic if you already have an open one with the same issue or question. I have merged the duplicates.

1 Like

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