Describe your issue in detail here.
I don’t know how to add the target element there is no demonstration for it.
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- User Editable Region -->
<!-- TODO: Add link to cat photos -->
<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
<!-- User Editable Region -->
<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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Safari/605.1.15
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
Adding the target attribute, with its value"_blank"to the anchor element is same as when the href attribute with its value "https://freecatphotoapp.com" were added to the anchor.
I suggest using this previous code quoted from a previous step where the href attribute and its value "https://freecatphotoapp.com" to the anchor.
Leave a space after the element and before the href when the target and its value are added to the opening anchor element.