Tell us what’s happening:
Describe your issue in detail here.
I been stuck here for a day and more if someone please can help me it says : You should only add one opening anchor (a ) tag. Please remove any extras.
And i dont undestand which tag is talking about that i have to remove
**Your code so far**
<a href="https://freecatphotoapp.com"</a><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 14
This is not a valid opening tag. Every tag must have a < and a >
Look back at the other anchor element you wrote. See where cat photos is? That is where the thing that will be a link goes - between the opening and closing tags. Your img element should be between the two tags here.
Tell us what’s happening:
Describe your issue in detail here.
Hello there i stuck for days on this step please if someone can help im newbie and very new to this HTLM codes
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://freecatphotoapp.com"</a><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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 14
i have this code: <href="https://freecatphotoapp.com"> <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
and it says to me: Turn the image into a link by surrounding it with necessary element tags. Use https://freecatphotoapp.com as the anchor’s href attribute value.
i just tried this one <a "href=https://freecatphotoapp.com"
and it says : You should only add one opening anchor (a ) tag. Please remove any extras.
im confused because there is no any extras.
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.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.