Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<a href<p>Click here to view more cat photos.</p></a>
<a href="https://freecatphotoapp.com">click here to go to freecatphotoapp.com</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/107.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 11
Hi!
Please specify your question/what is confusing you the next time you make a post.
On your code, you should remove the <a href that you put before the p element with text “Click here to view more cat photos”. That should just be a p element right now, no a or href. On the next line, your href value is incorrect. It should be “https://freecatphotoapp.com”. It looks like you copied the value in the example, not the actual instructions of what to do . Then, the text in that a element should just be “link to cat pictures”.
Let me know if you need any other help.
Hi,
Below <!-- TODO: Add link to cat photos - - >, there are three lines of code. The first one should just be a p element with the text: Click here to view more cat photos.
The second one should have an <a href, and the href value should be to “https://freecatphotoapp.com”. The text between the a tags here should be: link to cat pictures.
The third line is your img element, which is completely correct.
Let me know you would like for me to clarify more.