Helpful Information
 
 
Category: HTML
Tags & Keywords

I need to know how to make a link on my page direct a visitor to somewhere else on my page.

IE; When a user clicks on the title of a song from a list, they are directed to that song title/lyrics further down the page.

Any and all assistance would be appreciated. Or, if you know of a sourcepage I could read the coding from... thanks in advance. :)

All you need is HTML anchors. Simply do a search on Google for it, though here's a quick explanation:

1) Create the link that will jump further down to a specific location on the page when clicked on:

<a href="#lyrics">Jump to lyrics</a>

2) Then, go to the position on the page you wish the link to jump to, and insert the following:

<a name="lyrics"></a>










privacy (GDPR)