I need help to pass Step 12

Please please help on step 12, I am stacked for days.

  **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="https://freecatphotoapp.com">"catphotos."</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 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

Challenge: Step 12

Link to the challenge:

1 Like

Hello !
I think you read to quickly the instructions, you don’t have to add a line of code, but you have to modify the one inside the <p> element, by adding a link tag around the “cat photos” part.
Hope it will help you !

Hi @Wmheg61

As @Halfonx said, dont rush you will learn faster after grasp some basics.

<p>
This is text, <a>this is text inside a p element and is also a link</a>
</p>
<p>
This is another text, <img  src="workplace.jpg" alt="Workplace">the image before is also a link</a>. I hope this examples will help you to understand the anchor element syntax.
</p>

The p element is a block element (it sits in a new line, because it takes all the available space, from left to right)
and the anchor, a, element is an inline element (like a word or a white space, it sits side by side with other words and inline elements, and only takes the space that its content needs).
References:

Happy coding! :muscle: :sunglasses: :hugs:

1 Like

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