Tell answer fast

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

  **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 target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
    <a href="http://freecatphotoapp.com">cat photos</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/102.0.5005.61 Safari/537.36

Challenge: Step 14

Link to the challenge:

Think back to the earlier lesson where you made text into a link like this,

<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>

Put the image code when the text ‘cat photos’ went in that lesson, but using the new anchor link to catphotoapp you are provided with.

1 Like

ill give you a hint… it wants you to surround an image in an anchor tag… so the image will link to a website… heres a paragraph wrapped in an anchor tag

<a href="https://www.youtube.com"><p>check out my channel</p></a>

how would you do it will a image element instead of a <p>?

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