I did not get step 12

I am stuck with step 12
strong text

  **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="https://catphotoapp.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 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1

Challenge: Step 12

Link to the challenge:

You are close, don’t give up. First, the opening a tag needs to have a > at the end, right? Every tag starts with < and ends with >. Second, is that the correct URL to use for the href attribute? I think they want you to use the same URL that is in the link below the p element, right?

<a href="https://freecatphotoapp.com">cat photos</a>

Third, you deleted the text “cat photos” from the end of the sentence in the p element. This is the text you want to turn into a link, so surely you still need it, right? If you want that text to be the link on the page then where do you need to put it?

Thanks :pray: I got it , finally I will able to go to the next step

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