Learn HTML by Building a Cat Photo App - Step 10

Tell us what’s happening:
Describe your issue in detail here.
I’m stuck at step 10 …I can’t seem to insert the anchor element to the link idk
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>
   <a> <ahrefhttps://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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Safari/605.1.15

Challenge: Learn HTML by Building a Cat Photo App - Step 10

Link to the challenge:

HI @brri617 !

Welcome to the forum!

It looks like you have some syntax errors which is why the test is not passing

Here is the basic syntax for an anchor tag

<a href="some-link-goes-here">some anchor text goes here</a>

I would suggest resetting the lesson and trying again.
Refer to the example I gave for the correct syntax and you will pass the test

Ok thanks let me try that

1 Like

It worked! Thank you

1 Like

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