**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
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.
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>.