Trouble figuring out the anchor

  **Your code so far**

im having trouble figuring out the anchor and ive tried to watch the video but for some reason i cant watch it


<a href="https://www.freecatphotoapp.org>catphotos"</a>

<h2>CatPhotoApp</h2>
<main>

<img src="https://www.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>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

You have the words ‘cat photos’ in the wrong place. They are within the quotations for the href attribute. It should look like this:

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

Also, I would put it within the main element, not above all of the code. Hope that helps!

@michaelp91 I have blurred the code, try to help people first without just posting the solution.


@avilajairo317 This is the example the challenge givens.

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

Compare it to your code and see if you can spot the syntax issue.

<a href="https://www.freecatphotoapp.org>catphotos"</a>

This is the URL you are asked to use https://www.freecatphotoapp.com and this is the text cat photos (two words)

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