Learn HTML by Building a Cat Photo App - Step 14

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

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 <a ref="https://freecatphotoapp.com">cat photos.</a> </p>
      <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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.85 Safari/537.36 OPR/80.0.4170.72

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

Link to the challenge:

Try clicking the restart step button.

Do not delete any code next time.
Just add code.

Also if not sure what to do read this

Try editing your anchor element < a > from ref to href. At the moment, it looks like there’s a typo / the ‘h’ is missing.

Then add the target="_blank within your anchor element to instruct that the hyperlink open in a new tab.

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