I am stuck i am new to this coding life please help me get pass this lesson

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 <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
    <a href="https://freecatphotoapp.com" </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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 14

Link to the challenge:

  1. You need to close starting <a> tag correctly. You are missing the closing bracket >

<a href="https://freecatphotoapp.com" </a>

  1. The image should be inside the link. Just as you can put text for a link, here you just put the image instead.

Example:

<a href="https://forum.freecodecamp.org/"><img src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg" alt="Logo"></a>

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