Tell us what’s happening:
Not sure how to create a target?
**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"_blank>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>
**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 13
IF you know how to make an img element, then you know how to make a src attribute.
And if you know how to make a src attribute, then you know how to make a target attribute.
all attributes (almost all I should say) look like this:
// example of
// attribute value
// | |
<img src="link">
but the target attribute works with anchor tags, not img, so use the above explanation to try to figure out where to add the target attribute.
I’m sorry but I am being asked to insert “_blank” somewhere within the anchor of line 7 so a new tab is opened, I keep getting this response:
“Hint: Your anchor (a) element does not have a target attribute. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.”
None of this is helping, I’ve placed _blank in front of the href, after href, in front of the link, after the link and I am still getting the same repsonse. I’ve placed <_blank> in multiple areas and I am not getting passed this.