Learn HTML by Building a Cat Photo App - Step 10

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more cat photos.</p> <a href=“https://freecatphotoapp.com“></a>
      <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_13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/105 Version/11.1.1 Safari/605.1.15

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

Link to the challenge:

:balloon: Hi, welcome to the forum!
We see you have posted some code but did you have a question?

Please I am stuck on step 10

Typed:

But it keeps saying it’s not correct or typo… What is wrong please

you are using a non-english double-quote character which is not accepted in the code.
You must switch to using an english keyboard or copy the double quotes from the text of the exercise. The proper quotes look like this:
<a href="URL">

1 Like

Thank you sooo much. It worked

1 Like

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