Learn HTML by Building a Cat Photo App - Step 12

‘’’
Turn the image into a link by surrounding it with necessary element tags. Use https://freecatphotoapp.com as the anchor’s href attribute value.
‘’’
‘’’

Click here to view more cat photos.

'''
<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <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>
      <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 6.1; rv:106.0) Gecko/20100101 Firefox/106.0

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

Link to the challenge:

hi there,
it is asked to wrap the words “cat photos” inside of the full sentence " Click here yo view more cat photos" in some a tags.

how to wrap the word i do not know plz help

Here is your attempt.
If you look at the preview pane right now you will probably see this:

Click here to view more cat photos.cat photos

But what they want instead is this

Click here to view more cat photos.

So just adjust what you wrote to look like this.

Make sure you keep the period (dot) outside the link.

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