Learn HTML by Building a Cat Photo App - Step 12

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

<!-- User Editable Region -->

      <p>See more cat photos in our gallery.</p>
      <p> <a href="https://freecatphotoapp.com">link to cat pictures</a> cat photos.</p>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">

<!-- User Editable Region -->

    </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/119.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Blockquote

Blockquote

Welcome to the community @Itxbaloch445 !

A couple of things, please do not add, change, nor remove anything from the opening code provided at the start of this step?

Use the example from the step

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

as a reference on how to create the link.

Notice how everything is within the p element tags.

Notice how the anchor is touching freeCodeCamp on both sides.

No extra spaces, no additions, deletions, or changes, except to add an anchor to create the link.

I hope this helps you move on in your coding journey.