Can anyone help im stuck right 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 cat photos.</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 11; vivo 1906) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.78 Mobile Safari/537.36

Challenge: Step 12

Link to the challenge:

lets say i have this sentence .
<p>Interested to learn more? </p>

and i want to make the word learn a link that takes me to a wikipedia page so what do i do?

<p>Interested to <a>learn</a> more?</p>

now its a link but it goes no where cause there’s no distention so i add href attribute with a value

<p>Interested to <a href="https://Wikipedia.com">learn</a> more?</p>

do that to ur cat photos
but first restart step please so u wont be confused

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