Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Im super confused on where to put the (a) elements and if i need to move the P elements and what parts to remove. ive been stuck on this for a solid hour now:,)

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

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

Paste the new link into the href

1 Like

Hej,

Inside the p element Click here to view more cat photos, put the a tag between more and cat. Don’t forget to make a closing a tag then p tag too.

I hope it helps.

Good luck!

1 Like

Cut (ctrl+x) the entire line 8 inside the “p” tag; Then u need to close the “/a” after the words u want to be the link. Remember: All of the tags must be close, and only be closed once.
Sorry for possible grammar erros, English is not my mother language

1 Like

tvm im getting closer to figuring it out<3

tysm! im deffo abt to figure it out and also no worries i understood u:)

Tags inside others tags is the secret bro. “tag 1” “tag2” “/tag2” “/tag1”. in this case “tag1” is a children of “tag2”, because is inside it (after opening and before it closes).
don’t be discouraged if u dont get it soon, that’s the life

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