Learn HTML by Building a Cat Photo App - Step 12

**Tell us what’s happening: **
Describe your issue in detail here.
I replaced the old cat photos in the p bracket but confused as in where’s the anchor that needs to be gone and what does it mean by text below paragraph

  **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.<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/105.0.0.0 Safari/537.36 Edg/105.0.1343.27

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

Link to the challenge:

Welcome to the forum,

the exercise wants you to remove the old link beneath the paragraph, you don’t need duplicate links, text just in case you have a duplicate “cat photos”.

If the test still doesn’t pass, you need to remove the space between the opening a link and “cat”, some exercises don’t like extra spaces. Also the full stop has to go between the two closing a and p tags.

Im still a little confused what would i need to work on in order to get it correct and am i heading towards the right direction or do a reset

You have 2 anchor elements in your code.

One of them you made it in the previous step.

And the questions asked you to remove the anchor that you have made in the previous step.

Is that clear enough? I hope that helps :pray:

You also ned to work on the correct syntax to write HTML elements.

Elements consists of opening tags and closing tags. It goes like this

<div> ... </div>

It cannot be like

<div ... </div>

As that would produce an error (notice the color difference?)

If you are still stuck, please the code of your latest attempt using triple backticks like this

```html
paste code here
```

The second anchor should be deleted.


There are also a couple of errors in your code:

  • You need to delete the extra anchor element ( the second one) as mentioned.

  • The first anchor has a wrong syntax. You have typed the closing tag as <a/>, the / comes just after the < in a closing tag.

  • The text in the anchor element should only be cat photos, without any space or fullstop like what you have given.
    Instead the space comes just after more before the <a>.

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