Learn HTML by Building a Cat Photo App - Step 11

Tell us what’s happening:

it says that it has to have a opening tag like when the code already has that

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>

<!-- User Editable Region -->

      
        
       <a"link to cat pictures" href>="https://freecatphotoapp.com"></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/126.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 11

Your a (anchor) element is malformed. The value intended for the href attribute is freely floating in the element.

Here is an example of a properly formed a (anchor) element.

<a href="https://www.freecodecamp.org">click here to go to freeCodeCamp.org</a>

It has an href attribute that is set equal to the link https://www.freecodecamp.org. This is where the anchor element will lead when clicked. Inside the a element is the text click here to go to freeCodeCamp.org which is going to be the link text. It is what the user will see.

Let me know if you have any further questions.