Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
I’m not sure what’s happening with this section. Please help.

Your code so far

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

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

Link to the challenge:

Hello friend! welcome to our community,kindly post your entire code here.

Hello! Thank you for responding. Here’s the entire code:

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more <a href="https://freecatphotoapp.com"> 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>

This is not the code,this is the the output of the code. A code refers to the set of instructions, or a system of rules, written in a particular programming language. Whatever you wrote to produce the above,is the code.

Tell us what’s happening:
Describe your issue in detail here.
I’m not sure what the problem is with the anchor and p element thingy. Please help.

Your 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> </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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

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

Link to the challenge:

I’ve edited your code for readability. 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 (').

1 Like

You must not delete any of the text in the p element. Only add the opening and closing a tags around the words cat photos in the original contents of the p element.

1 Like

I’ve been able to solve it. Thank you.

Please dont use another users topic to ask question about your topic. I have already responded to your post. Please keep any questions you have in your own topic

Thanks

alright sir .sorry about that sir

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.