Please what am I doing wrong here somebody please help me 😢

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<a href="https:freecatphotohttps://freecodecamp..org>freecodecamp</a>


<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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 (Linux; Android 9; SM-G955F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

Your <a> element should have the anchor text of "cat photos" and it should be linked to (https://www.freecatphotoapp.com)instead

The exercise is as follows: Create an a element that links to https://www.freecatphotoapp.com and has “cat photos” as its anchor text.

First of all, your link is incorrect. You only need to copy and paste the given link into the href argument. Second of all, you used “freecodecamp” as anchor text while it should’ve been “cat photos”.

It should look something like this:

Mod Edit: SOLUTION REDACTED

Your a element should have the anchor text of cat photos .

the anchor text is the text between <a> </a> tag yours isn’t cat photos it’s freecodecamp

<a>freecodecamp</a>

You need an a element that links to https://www.freecatphotoapp.com

this one is talking about the link is inside <a href=""></a> href attribute
although your link in href attribute isn’t the same required

<a href="https:freecatphotohttps://freecodecamp..org></a>

so try to make anchor again with a closed href attribute because yours was missing a closing "

Thank you so much,I appreciate

Thank you so much I really appreciate it

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.

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