Please is there something i'm doing wrong

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>Cat photos<a href="https://catphotos.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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36

Challenge: Step 12

Link to the challenge:

Hello there @Adepeju.

  • You forgot to properly close your anchor tag <a> should have been
  • Always add a text in between your anchor tag <a href="some-url"> some text </a>
  • You are required only to replace the text “cat photos” only with the anchor tag that has the text “cat photos” and not the entire paragraph.
  • Required output is extremely similar to this:
<p>Click this <a href="https://www.google.com"> link </a>.</p>

Hope this helps. Happy Coding :+1:!

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