Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.Please help, can get through step 12

  **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.<a href='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 (Windows NT 6.2; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0

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

Link to the challenge:

You have “cat photos” in the p element twice now. You only want it in the sentence once.

thanks alot boss, but its still the same

Now you just have a blank link at the end. You need to turn the words “cat photos” at the end of the sentence into a link. You already did that exact same thing when you create the “cat photos” link below the p element. You just need to do the same thing to the words “cat photos” in the p element. You might want to restart the step to get that “cat photos” link below the p element back so you can use it as an example.

Also, pics of code are not the best. It is much better to paste your HTML in here. To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key.

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