Tell us what’s happening:
Describe your issue in detail here.
how do i 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?
**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 cat photos.</p>
<a href="https://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></main>
<body></body>
<html></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.0.0 Safari/537.36
Hello there @belovediwu This challenge requires you to nest a HTML element in another element. You are required to nest the anchor tag <a href="https://freecatphotoapp.com">cat photos</a> in the <p> and replace the respective text with the provided anchor tag.
Required output is extremely similar to this:
<p>Click this <a href="https://www.google.com"> link </a>.</p>
As you can see the text “link” is the actual link nested in the paragraph. So you are requested to nest cat photos in the paragraph above it.