Learn HTML by Building a Cat Photo App - Step 12

Pls can someone put me through I seem to be stuck here but i dont know where I’m getting it all wrong

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more cat photos
        <a>href="https://freecatphotoapp.com"</a>
        </p>
      <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/97.0.4692.87 Safari/537.36

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

Link to the challenge:

The only text that should turn into link is cat photos.

You need to wrap the cat photos text in anchor tag a and later on close it with p element

The result will be looks like this if your step is correct
1

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