Help stuck here

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more
       <a href="">cat photos</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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36

Challenge: Step 12

Link to the challenge:

Hey there? What exactly is the problem you are having?

Reset your excercise, they provided you with link <a href="HERE WAS THE LINK">cat photos</a>.

Or if you need it, here you go: (https://freecatphotoapp.com).

Now you have to turn the words “cat photos” into a link.
To do this, you have to nest your <a> element into a paragraph. It goes like this:

<p>Click here to view more <a href ="LINK">cat photos</a>.</p>

Everything after “>” in <a href ="LINK"> will be turned into a link leading to LINK value provided in <a href=''>, that’s why you have to close </a> before “.”, so that you won’t include it.

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