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
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more <a https://freecatphotoapp.com></a>cat photos</a in our gallery.</p>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
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
CatPhotoApp
Cat Photos
See mor
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- User Editable Region -->
<!-- TODO: Add link to cat photos -->
<p>See more <a> https://freecatphotoapp.com></a>cat photos</a in our gallery.</p>
<!-- User Editable Region -->
<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/124.0.0.0 Safari/537.36
Please post your latest code.
It will be easier to help you that way
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
Another thing you can do to help you is look at other posts on the forum.
The forum is not able to give out full answers, but there are many other posts of people going through this challenge.
Some of them were close to solving it and those discussions can help you understand where you are going wrong and how to fix it.
for example, this person here was super close to solving it but they had spacing issues