follow the instructions. Your first a tags should not have anything new in it . It just need the href attribute. So your a tag don’t need the target=“blank” attribute. It should look the same way as your second a tag.
Tell us what’s happening:
Describe your issue in detail here.
cant seem to understand why my code wont pass Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a href="https://freecatphotoapp.com>."cat photos<a/>.</p>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
<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 12
ok this time make sure your your are putting everything in the correct order. The quotation mark goes before the >. There should not be a period after the href element. Also don’t just go to the next step and copy what they have. You have to do it yourself. Play attention to your mistakes. For the a tag the / goes before the a . Hopefully, this will help.