Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

now im lost again
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.
    <a href="https://freecatphotoapp.com">cat photos</a>
    </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/105.0.0.0 Safari/537.36

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

Link to the challenge:

Hi lost again, I’m dad!

Can you explain the issue in your own words?
Have you tried reading the hints?

turn the words cat photos into a link to https://freecatphotoapp.com . When you are done, remove the old anchor tag and text below the paragraph.

i dont know what anchor tag even means

Anchor tag is <a>

It is part of the Anchor element.

Remember an element has opening tag <...> and a closing tag </...>

An an anchor element would look like this

<a href="www.example.com"> ... </a>

Hope this helps :slight_smile:

Tell us what’s happening:
Describe your issue in detail here.
I DONT GET IT

  **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 https://freecatphotoapp.com.</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/105.0.0.0 Safari/537.36

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

Link to the challenge:

In the previous lesson you made the words ‘cat photos’ into a link by wrapping the anchor element around it.

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

That anchor element needs to go inside this paragraph element.

<p>Click here to view more cat photos</p>

In such a way that the phrase cat photos in that paragraph element is made into a link.

The way the anchor element is written shouldn’t change, it’s opening and closing tags shouldn’t be removed.

Does that make sense?

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