Link to internal sections of a page with anchor documents

please can someone guide me on this?

We have to see your code and it would be helpful if you explain what you do not understand about the challenge.

Link to Internal Sections of a Page with Anchor Elements


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.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).


Or use the Ask for Help button:

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Hey there =)

Say for example you have on you nav a link that reads footer (and therefore takes you to the footer of that SAME page.

On the footer element you will need and id

<footer id="footer"></footer>

That ID will be the HREF of your anchor up in your nav bar:

<nav>
<ul>
<li>
<a href="#footer"/>
</li>
</ul>
</nav>

Try and let us know if all went well. =)

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