I can't figure out how to get the <a> element and the closing tag so I can move on

Tell us what’s happening:

Your code so far

<h2>CatPhotoApp</h2>

<main>

  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>

</main>

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

<a href="https://freecodecamp.org">this links to freecodecamp.org</p></a>
      

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36.

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

Your code isn’t showing up right. Please use the </> button or put backticks ``` on a new line before and after your block of code.

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

Please use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks are not single quotes.

markdown_Forums


@JeremyLT done

Hey @SugarB3rry!

Create an a element that links to http://freecatphotoapp.com and has “cat photos” as its anchor text.

You don’t need link pointing to https://freecodecamp.org as It only asks for http://freecatphotoapp.com

You should also place that anchor element isnide your main element.

Example:-

<main>
<a href="your link">Your Link</a>
</main>