Where do I add the _blank at??
Sorry I’m new on here
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<!-- User Editable Region -->
<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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0
Based on what you said, I think the mistake might be you’re trying to add it around you’ll want to add it TO the anchor-<a... It’s not limited to just having one attribute inside it.
If you still can’t figure it out, post your code so we can problem solve.
Hey there after your href url you can add the target attribute. Looks like this target="_blank. The website I provided is informative and will demonstrate how to implement a target attribute. Good luck!