Step 12 Cat Photo App

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

I have been stuck on the following anchor element

Click here to view more

The instructions indicated that the text titled “cat photos” needed to be in an anchor element which I included. The instructions also indicated to remove the text “cat photos” below the p element. However, the website is still indicating that the code did not pass.

  **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 href="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 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0

Challenge: Step 12

Link to the challenge:

HI @Talkingtaco65 !

Welcome to the forum!

Here is what you current code produces
Screen Shot 2022-06-11 at 8.14.53 PM

This is incorrect because we want the result to show Click here to view more cat photos where cat photos is the link.
This is the correct result
Screen Shot 2022-06-11 at 8.15.53 PM

You need to reset the lesson.
Nest the anchor tag from line 8 inside the paragraph tags.

Hope that helps!

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