New link please assist

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 href="https://cat photos"</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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Safari/537.36

Challenge: Step 12

Link to the challenge:

If we want to turn a text into a link, we just wrap that text with <a></a> element.

For example we will turn the word click into a link

Before:
<p>Please click to visit site</p>
After:
<p>Please <a href="https://www.site.com">click</a> to visit site</p>

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