turn the words “cat photos” located inside “p” element into a link using the same value for the “href” attribute as the link below the “p” element. The “p” element should show the same test in the browser, but the words “cat photos” should now be a link. Make sure to remove the “a” element with the text “cat photos” on the line below the “p” element.
<p>Click here to view more <a href="cat photos"
href="https://freecatphotoapp.com></a></p>
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a href="cat photos"
href="https://freecatphotoapp.com"></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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15