Learn HTML by Building a Cat Photo App - Step 12

**can you explain what I’m missing .they way was not successful on my end

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p><a ="https://freecatphotoapp.com"</p></a>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- User Editable Region -->

      <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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15

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

Link to the challenge:

Hope it helps

Mod edit: Removed Solution
All is good just use href before the link.

You seem to have deleted some text

Try restarting the step first.

Here is an example of how to make one word into a link:
(This is NOT the answer to the step)

<p>Some dummy text in an example</p>

To make the word text into a link

<p>Some dummy <a href="weblink">text</a> in an example</p>

Also you deleted some texts and put the a closing tag after p closing .
So bring those texts back and put the a closing tag inside the p tags.

Your solution has been removed from the post

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.