Please need help in this step

Tell us what’s happening:
Describe your issue in detail here.
Please what am I getting it 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 target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
 <a href="https://freecatphotoapp.com.>" <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 11; TECNO BD4j) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36

Challenge: Step 14

Link to the challenge:

This is the correct href value you wrote earlier

Now look at what you wrote for this challenge

Those href values should be the same but they are not.

You need to fix the quotes at the end and remove the period

Thanks for the help. It works

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <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"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </section>
  </main>
</body>
</html>

Please I need some help in nesting the section step 16

If you need help with a new challenge, please use the Ask for help button in the challenge.

That will create a new post with your code and challenge link and we can assist you there :+1:

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