Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

After nesting the anchor (a) element, the only p element content visible in the browser should be See more cat photos in our gallery. Double check the text, spacing, or punctuation of both the p and nested anchor element.

help me guys i seem to be stuck here

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"<a/>cat photos<a/>.</p>

<!-- User Editable Region -->

      <p/>click here to view <a href="https://freecatphotoapp.com">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/92.0.4515.131 Safari/537.36 Edg/92.0.902.67

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @upcoming.tech.wizz

Here is the original paragraph element:

<p>See more cat photos in our gallery.</p>

You appear to have altered and removed some of the text.

Please remove the <a/ from the end of the anchor opening tag.

In the anchor closing tag, the forward lash goes before the tag name.

The first word of the paragraph text needs to start with a capital letter.

Add the missing words after photosand the correctly syntaxed closing anchor tag.

Happy coding