Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
good morning . I’m having a little problem with this step as I don’t understand . so far i got some of it right but I just cant seem to find the mistake I made .

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p><a href="https://freecatphotoapp.com"</a>Click here to view more cat photos.</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

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

Link to the challenge:


Wrap just the text “cat photos” with ‘a’ tags:
image

This is a correct anchor element. Your new one should look like this one.

But it is rather different

thank you for the advice but im still having a little trouble with this.

image

Did you change any code? It so, please show us. If not, can you ask a more specific question about what we said?

You are getting really close to taking a picture of the answer. Please provide help in words.

In this step, you are given two lines of code. A change should affect only the first line. In the first line, after the text "Click here to view more " (pay attention to a blank space at the end of the text) you should add
image. Then, immediately after, add “cat photos”. Now close the ‘a’ element by adding the closing image tag. If you have done it, it is time to add a dot.

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