On step 64 I keep getting an error that the text for the link is incorrect.
When I submit it as “No Copyright - freeCodeCamp.org” the results say:
The link’s text should be freeCodeCamp.org
. You have either omitted the text or have a typo.
Once I delete the "No Copyright - " portion, the results say:
After nesting the anchor (a
) element, the only p
element content visible in the browser should be No Copyright - freeCodeCamp.org
. Double check the text, spacing, or punctuation of both the p
and nested anchor element.
1 Like
Hi there and welcome to the forum!
It would be easier to help you if you could share your code directly.
You can do this by using the Preformatted Text Tool (</>
icon or CTRL+e) and pasting your full code where indicated, between the triple backticks.
Alternatively, when you need help with any of the steps in the Responsive Web Design certification you can also click on the Help icon (which appears after you have submitted incorrect code three times). This will create a forum post for you which includes your full code, a direct link to the step in question and an opportunity for you to explain what you’re having difficulty with.
1 Like
<p>
<a href="https://www.freecodecamp.org">No Copyright - freeCodeCamp.org </a>
</p>
<p>
<a href="https://www.freecodecamp.org">freeCodeCamp.org </a>
</p>
Ok, so you have a p element with some text and you are supposed to turn a portion of that text into a link.
Here’s an example:
<!-- text without link -->
<p>Please visit my website at example.com</p>
<!--text with link -->
<p>Please visit my website at <a href="example.com">example.com</a></p>
1 Like
Thanks for your help, I can see where my error is after looking at your example!