Learn HTML by Building a Cat Photo App - Step 12

I am stuck here in the line 6 of step 12 and am not understanding where i went wrong

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>"cat photos"</a>in our gallery.</p>
      <a href="https://freecatphotoapp.com" alt="href">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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Hey @tanishakulkarni46
Remove the quote marks that you have used to enclose the cat photos text
Then add an href attribute in the opening tag of the a element

Remove the quote marks

Welcome to the forum @tanishakulkarni46 !

You may wish to look at the example in the instructions for guidance. It is a great resource, as it shows us how to anchor the text while it remains within the p element.
We do not change anything, except adding the anchor with the provided href and value.
Notice how, in the example, the anchor is touching both sides of freeCodeCamp to form the link.

I find the examples are usually very good guidance for me.

Happy coding!

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