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 (ahref="https://freecatphotoapp.com">cat photos</a>.</p>
<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>
hi all i’m stuck at this part of the challenge, and have been for a while i just cant seem to get it right. i don’t understand what the hint is telling me to do. and cannot figure it out for the life in me. any help would be greatly appreciated.
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15
So, the a’s opening tag in the original code was this… it seems like you’ve edited it in yours but I’d start with the original:
<a href="https://freecatphotoapp.com">
What it’s asking is for you to add a new “attribute” called target in that tag, and the value should be _blank. To give you an idea of what that should look like… it should have the same structure as the other “attribute” href, that has a value of https://freecatphotoapp.com. Also below a <div> element with multiple attributes as a reference of what multiple attributes might look like:
I too am still struggling with this. I have tried all kinds of things and looked at this in other HTML Editors and no errors there. I cannot continue with this if I cannot get passed this issue. I keep getting
Test
Sorry, your code does not pass. Don’t give up.
Hint
Your anchor (a) element should have a closing tag. Closing tags have a / just after the < character.