What am I doing wrong here, another programmers perspective would be much appreciated

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

I got the link to show in the browser observation but it is saying my cod is wrong. I believe it has something to do with the anchor please get back to me thank you.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
   
    <p>Click here to view more <a "cat photos".</p>
    <a 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 12

Link to the challenge:

Have another look at your code. You need <p> tags that wrap around all the text. Within the <p> tags, you need <a> tags that wrap around some of the text.


This is my code now I put

on the outsides of the text with <a href= what I thought to be the correct position but I am still off within the code, thank you for the feedback.

You’re almost there, just one small adjustment. Consider the href attribute. What does it do? What value does it take?

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