Can anyone help me I'm stuck here I'm failing to understand what I'm supposed to do

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 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>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 11; Redmi Note 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36

Challenge: Step 12

Link to the challenge:

You have to nest the <a> element inside the p element, such that the code will show cat photos as a link.
Tip: You can cut the whole anchor element and select the cat photos part of the p element and then paste the anchor element

Turn the words cat photos located inside p element into a link by replacing the words with the anchor element added previously.

Hello @shawntee

Hint

Your anchor ( a ) element should be nested within the p element.

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