Help Please! Stuck on Lesson 12

Hello, my name is joshua. Just started to learn HTML - CSS , and im stuck on lesson 12. I cannot seem to figure out what I am doing wrong.

I’m having an issue with making the word cat photos the link . Not sure if the <a href = is this issue

Can someone please take a look at my current code and point out what I’m doing wrong.

  **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 <a href="https://freecatphotoapp.com">cat photos </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:

Hello and welcome!

So in this line we need couple more things:
a element doesn’t have a closing tag.
There was a dot after “cat photos”

Thanks for responding… I just figured it out, I looked at other post and went over my code and I got it.

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