Im stuck on this question

my code is this:

<a  href="https://wwwfreecatphotoapp.com</a>

its wrong and i don’ know why?

It’s much easier to help you if you provide proper context for your question. Please include a link to the challenge which you are stuck on and also provide your full code.
The easiest way to do this is to click on the help icon which appears after you have submitted incorrect code three times.

In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tag

See more<a href=“https://freecatphotoapp.com”cat photos in our gallery.

s around these words.

1 Like

If you want to post code on the forum, please insert it inside backticks so that it’s readable. You can do this with the </> icon (or CTRL + e), and paste the code where indicated.

In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around these words.

<p>See more cat photos in our gallery.</p>
     / link to cat pictures<a href="https://freecatphotoapp.com"</a>

/ and that is my code

Which step are you on? The code you just posted bears no resemblance to the challenge instructions, or to the code you posted previously.
Like I said, if you are stuck, it’s best to click on the help icon.
This will create a forum post which includes a direct link to the challenge and your full code.
What you’ve posted is a random snippet of code with no context.

I’m new and trying. Sorry to bother. Someone said click the help at the bottom of screen. I did that. it didn’t help

Please do not try to write answers for users. Instead, please help them understand and fix the issues in their code themselves. Thank you

My bad, still new to this and did not know that was a rule.

To use the Ask for Help button, click the button and then submit the topic that is automatically created for you on the forum.

Which Step are you working on?

I see 2 errors.
First, reread " turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around these words."
Second, make sure your anchor tags are complete. I usually type the basic tags like first, and then go back to add the details like the href, class, id, etc. This helps me avoid typing incomplete code. If I type everything at once, instead of breaking it into 2 parts, sometimes I’ll forget to add the closing tag or I’ll leave out a >.

I forgot to proof read my comment before posting it.
When I said basic tags, I meant the a and /a, or p and /p etc.