Learn HTML by Building a Cat Photo App - Step 12

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

The hint I get is this “After nesting the anchor (a) element, the only p element content visible in the browser should be See more cat photos in our gallery. Double check the text, spacing, or punctuation of both the p and nested anchor element.”

I don’t know what I’m doing wrong. I’ve been at it for about 15-20 minutes trying to figure this out.

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.<a href="https://freecatphotoapp.com">cat photos</a></p>
      <a href="https://freecatphotoapp.com">link to cat picture</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:

iPhone - iOS16.3.1

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

Link to the challenge:

You have to add a attribute in your p tag.
such as;
<p> Text <a href="#"> linkable text</a></p>
The task is to make cat photos link-able text. so put your code in this format.

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