Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
How can I solve this step? I can’t understand kindly help me

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <a><p>Click here to view more cat photos.</p><a/>
      <a href="https://freecatphotoapp.com">catphotos</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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

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

Link to the challenge:

it it best to reset/restart this step and then go back to step 10 to review how to create an anchor element.

Then come back and look at your preview pane and notice that the paragraph shows up like this:
Click here to view more cat photos.

And the exercise wants you to use what you know about making links to turn the last 2 words into a clickable link. So it should look like kind of like this in the preview’

Click here to view more cat photos.

1 Like

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