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 -->
<p>Click here to view more <a href="https://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 Edg/105.0.1343.53
Challenge: Learn HTML by Building a Cat Photo App - Step 12
Yeah sure. Do you mind telling us whether you understand the requirement here? (To make the words cat photos in the paragraph into a clickable link)?
Or is the problem that you are not sure how to use an anchor tag?
This one has an opening tag <a href=“website-address-here”>
And it has some text in the middle link to cat pictures
And finally a closing tag </a>
Every anchor tag has these 3 parts.
Make sure that each part is complete and syntactically correct (angled brackets, href attribute and value, double quotes etc)