Help me is it a web glitch or me help!

Tell us what’s happening:
I corrected the ‘run the code’ problems and it still shows up.

Your code so far

  1. List item

<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</a>

Your browser information:

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

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

Look again at your hyperlink tag, something is missing.

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

I forgot, what is the hyperlink section beginning, middle, or end.

Hi @HSdabest!

Hint: the problem has to do with the end of the opening a tag. Refer back to the FCC example provided for you and see how they formatted their a tag.

<a href='https://freecatphotoapp.com' <!--something goes here-->cat photos</a>

Welcome to the FreeCodeCamp forums @HSdabest! Looks like you have your <a></a> tags. You then have your href attribute inside of them. But how would you get text inside of them? <a href="#"> </a>? That is the goal here.