Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

Hello! I am not sure what I am doing wrong, I am entirely new to coding and am trying to learn, I feel like I am just missing a piece of this or something because its highlighted like it should be but i need it to be just “cat photos” and not “cat photos in our gallery” that is highlighted, but whatever i do the closest to that I can seem to get is the full “cat photos in our gallery” instead of the “cat photos” that I singularly want highlighted. please help me im so confused :smiling_face_with_tear:

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 in our gallery</p>
      <a href= "https://freecatphotoapp.com">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 (Macintosh; Intel Mac OS X 10_15_7) 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

Welcome to the forum @MiaMarie

The opening anchor tag is missing a closing angled bracket, so is confusing the browser.

Here is an article explaining how to link text and images inside nested elements you may find helpful.

Make sure you reset the step to clear your old code.

Happy coding

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