Learn HTML by Building a Cat Photo App - Step 10

please i still don’t get the answer to step 10
the code is not running*
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>
      (a)
      <a 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; rv:109.0) Gecko/20100101 Firefox/114.0

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

Link to the challenge:

a couple things to watch for here. first, you don’t need an a surrounded in parenthesis. That has no function in html.
second, don’t put spaces after an equal sign. it’s just good practice for making it pretty.
third (perhaps the biggest one), always be sure to surround your attribute links with quotes. you only have one quote in your href

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