Learn HTML by Building a Cat Photo App - Step 15

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>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" <a href="https://freecatphotoapp.com "> 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/105.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 15

Link to the challenge:

Hello and welcome to the forum.
We see you have posted your code, but no accompanying question?

I got stuck here . what to do in step 15?

please help me. here I am beginner.

So I see you were trying to write an anchor tag.
There are a couple of things to fix here:
1- you have an extra > bracket in the middle of the tag. Please remove it (angled brackets go at the start and end of a tag, not in the middle). Also remove the space added to the end of the URL after the word .com
2- you do not have a closing tag for this opening tag. So you will need one.
3- the location of your anchor tag is not helpful to make the img into a link. You should move it so it is on the left side of the img line. Meanwhile the closing tag of the anchor should be on the right side of the img tag
4- you deleted a > at the end of your img tag. You will need it to pass.

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