<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/113.0.0.0 Safari/537.36 Edg/113.0.1774.42
Challenge: Learn HTML by Building a Cat Photo App - Step 14
Could you describe, in your own words, what you are struggling with in this challenge please?
Learning to describe issues is a vital skill in coding and also, the more you say, the more we can help!
The instruction here says you add a target attribute to the anchor tag and give it a value of “_blank”. So just like you added the href attribute and gave a value of the URL, add a target attribute and give it a value of “_blank”.
You can add multiple attributes to an element by adding them to the element’s opening tag. You separate them from other attributes with a space. So, add a target attribute with the value _blank. The syntax for adding an attribute is attribute="value".
Please don’t use another users topic for help with your code
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.
The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.