Learn HTML by Building a Cat Photo App - Step 14

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>Everyone loves cute cats online!<a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a></p>
      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <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 mobile information:

itel A661W - Android 11 - Android SDK 30

Challenge: Learn HTML by Building a Cat Photo App - Step 14

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Welcome to the forum @Torlany

Turn the existing text cute cats into an anchor element that links to:

For next time, describe the issue in your own words. Learning to communicate problems is a part of becoming a web developer.

Happy coding

apparently my img element is wrong may assist me in figuring out how

Please open your own topic

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Hi Buddy, Here in this code you have done but need to do a little change.

Here you need to put your anchor tag inside the p tag, when you will do that then you will be able to pass this test.

Hope this helped.

I am try to get the text cute cats as an anchor element for the following link

kindly assist

Hi Buddy, can you please do share us your code and exact error, So that we all will be able to help you !

<a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"</a>cute cats</p>

There should be a new anchor element in the first p element this is the error code message i get . i dont know where i am getting wrong

I’ve edited your post to improve the readability of the code. 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.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

do you remember this line? you built it in the last few steps, now you need to do something similar. See how the link is wrapped only around the words “cat photos”?