Removing <a> element

hi
I have no idea how to remove the element (a) from the line below the p element.
please help :slight_smile:

  **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 href="https://catphotos.com"</a></p>
    <p>freecatphotoapp 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36

Challenge: Step 12

Link to the challenge:

Hey there! I’m a bit confused, are you trying to delete the line of code that is the anchor element?

delete the < a > element from begginig to start, all of it

1 Like

hey! this is the exercise
i’m supposed to have only one anchor element.
after turning the words "cat photos’’ into a link, i don’t know how to delete the second anchor element correctly.

<p>Click here to view more <a href="https://freecatphotoapp.com>cat photos</a>"
``
this would be the code you use to type into the paragraph tags then delete the entire anchor link tag that you created under the paragraph tag
1 Like

thank u so much! for your help!

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