Please what should I do 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="http://catphotos.com"</p>
     href="https://freecatphotoapp.com">cat photos</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 (Linux; Android 8.1.0; TECNO LA7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36

Challenge: Step 12

Link to the challenge:

So Step 12 wants you to: " The p element should show the same text in the browser, but the words cat photos should now be a link"

The original text is:
<p>Click here to view more cat photos</p>
You had the <a> (link code) below the <p> code, however, that is extra text that shouldn’t be there. You need to make the “cat photos” in the <p> code into a link using the code you wrote below the <p> code.

To do this, copy the opening <a href="http://catphotos.com"> code before “cat photos” and put the closing </a> after it, like so:

<p>Click here to view more <a href="http://catphotos.com">cat photos</a></p> 

Hope this helps!

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