I am on step 12 of building the cat website.
The instructions are to “In the text of your p
element, turn the words cat photos
into a link by adding opening and closing anchor (a
) tags around these words. Then set the href
attribute to https://freecatphotoapp.com/
”
My 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>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
<!-- 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>
I seem to have met the critera. The words “cat photos” is now a blue link that can be clicked so I’m not sure where the error is.