Hello all i have a problem in step 11 could any one help?
I am new here and need some help please, when im in step 11 i have some problem that cant go through,please any one help thanxs before
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more cat photos in our gallery.</p>
<!-- User Editable Region -->
<a href="https://freecatphotoapp.com"><a>cat photos</a>
<!-- User Editable Region -->
<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/129.0.0.0 Safari/537.36
Challenge Information:
Learn HTML by Building a Cat Photo App - Step 11
It looks like the issue in your code is with the <a>
tag. You’ve nested the closing <a>
tag inside another opening <a>
tag. removed
1 Like
cat photos
still can not pass trough to next step
Hi there!
You have modified your paragraph element. Reset the challenge step and add anchor opening and closing tags around existing cat photos
text you have within the p
paragraph text.
Hello and Welcome to the forum @AnggaAnggoro !
Good attempt!
This step is asking us to place the text link to cat pictures
between the provided opening anchor tag and closing anchor tag.
Example:
<a href="some url">Coding is fun.</a>
In my example, I have placed the text Coding is fun.
between the openign and closing tags.
You would place the text link to cat pictures
between the existing anchor tags without changing anything at all.
Wishing you good progress on your coding journey.
1 Like
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.