Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
what should i code? i need help for step 12

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    
    <p><a href="https://freecatphotoapp.com"</a>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/105.0.0.0 Safari/537.36

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

Link to the challenge:

In the text of your p element, 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.

Hi @reynoeka

A tag is part of an element that is enclosed in angle brackets < and >.

It seems like there is a part of your anchor tag that is not properly written.

Remember an opening tag of a paragraph element is <p> while a closing tag of a paragraph is </p>

It cannot be <p or p> or just p

Hope this helps :slight_smile:

it’s still false. any other solutions?

Here is a hint.

Anchor elements are what makes HTML elements clickable.

But you have to wrap an element with anchor element

Anchor element consist of the opening tag <a> and the closing tag </a>

Anything you put within the anchor element will make them have a link and can be clicked

If you still have trouble, Can we see your latest attempt?

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