Hey folks, really want to thank you in advance. I have looked at the various posts and I have even used GTP to help me “see” what is wrong with my code. I am not getting past this point. Can someone please help me understand what I am missing?
This is what I have entered and my code continues to get rejected:
Hello and welcome to our forum.
You are facing some spacing issues. You should only have some space after the text Cat Photos
and immediately after the closing anchor element tag. With these adjustments, your code should be able to pass all tests
That didn’t work. Still getting rejected.
Also, thanks for the welcome!
Let me see what you have after the updates.
The code is showing the changes you recommended: space after “photos” and space after closing anchor tag.
I also played with spacing in various other areas and still nada.
Working with an image proves to be tough sometimes. Kindly follow the steps below to add your code.
When you enter a code, 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.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
Okay, this isn’t part of the tutorial, but I did it. I also want to add that the image and the gramatics “show” correctly. There are spaces where there should be.
See the new code with the ticks.
I do not get what you mean Sandra! Do you mind being clearer?
I’m placing the original code in this message.
You asked me to first change it so it had spacing after the word “photos” and after the closing anchor. I did that and it was still rejected.
Now you asked me to use tick marks so you could read my code more easily.
I did that too. It still is being rejected.
Not sure what is confusing on this?
Please sprinkle me with some of that confetti…this is frustrating.
For the tutorial on how to add your code, you are supposed to do it here in the forum, on the post where you want to include any code, you should not do it in your code editor.
Now, instead of replying with an image of your code, surround the code that you wish to post with backticks.
Have I cleared any confusion caused?
You want me to write NOT screenshot the code to this forum is what you are stating, so YOU can amend it. Gotcha. I didn’t’ consider you could do this.
<p>See more
<a href="https://freecatphotoapp.com">cat photos </a>
in our gallery.
</p>
Try as much as possible to keep the default structure of your paragraph. You added some extra spaces.
you have an extra space in the a
element
Also, maybe the paragraph needs to stay all in one row
My original code was nested like this:
<p>See more
<a href="https://freecatphotoapp.com">cat photos</a>in our gallery.
</p>
The error states:
“After nesting the anchor (a
) element, the only p
element content visible in the browser should be See more cat photos in our gallery.
Double check the text, spacing, or punctuation of both the p
and nested anchor element.”
Hi #Birdswithroots, try to keep p and anchor tags on the same line as #ileniya and #stephenmutheu have said. I would suggest reset the challenge and just wrap the text with anchor tags which the challenge asks you to do. Good luck
<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
Like this? This still gets the same error message.
yes, I assume you typed opening anchor tag with href attribute because i don’t see it in your code sample and i checked it by typing it in the challenge and it works for me, you can try refreshing your browser.