Learn HTML by Building a Cat Photo App - Step 12 - EGmIhooidExlFxgEBDwVd

Tell us what’s happening:
Hi everyone please assist me here step 12
The link’s href value should be https://freecatphotoapp.com. You have either omitted the href value or have a typo.

  **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 cat photos. <a href="cat photos", href="https://freecatphotoapp.com">cat photos</p></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 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0

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

Link to the challenge:

You´re supposed to turn the words cat photos that´s already inside <p> into a link but instead you wrote cat photos again and turned it into a link.
You currently have two href attributes in your <a> element, the one with a link is the correct one.
Also, <a> should be nested inside <p> but your closing tag is outside <p>.

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