Learn HTML by Building a Cat Photo App - Step 12

**Tell us what’s happening:**Can’t figure out what I have wrong here.
Describe your issue in detail here.

Your code so far

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

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

Your browser information:

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

Here is a list of things you should fix

  • add a space after the word more
  • add a > after the href value (to the right of the second double quote)
  • move the </a> anchor closing tag to the right of the word photos (but to the left of the period)
  • remove any extra space to the left of the word cat

Oh WOw!! Thankyou so much for correcting my syntax. I really needed this lesson in proper spacing and tag placement. Greatly appreciated. :grinning:

Can’t find the backtick key

have you tried the instructions in the post? https://forum.freecodecamp.org/t/forum-code-formatting/25574

1 Like

Yes. Thankyou so much

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