Step 12 has given me a headache

hello guys , im stuck at stage 12 caan you assist please
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 <a href=>'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/103.0.0.0 Safari/537.36

Challenge: Step 12

Link to the challenge:

hi @takumhetu
I recommend resetting the lesson and then take it step by step

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.

 <a href="https://freecatphotoapp.com">cat photos</a>

Here we’re given an anchor element already made properly we need to turn the words cat photos that is inside the p element into a link by placing it inside an anchor element

The p element should show the same text 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.

the p element should contain the exact same text as before the only difference is the anchor should be nested within the p tags
once we have done this all we need to do is delete the anchor element that is below the p element

 <p>Click here to view more cat photos.</p>
      <a href="https://freecatphotoapp.com">cat photos</a>//this element gets deleted at the end

the original anchor element that resides below the p element is there essentially to copy from so we delete it as the last step only not before

okay, thank you. let me try that now

Please let me know if you need anymore help this one is hard to explain without just giving the answer away. The lesson instructions need some re wording to better suite new people, I believe it is an open issue they’re working on

hey

im really stuck , i cant seem to get past the 12th step

what’s your code now?

8 posts were merged into an existing topic: It keeps saying I’ve made a typo or I’m omitting text. How do I fix it?

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