An named anchor, so you could target section of the page, like jump to content, used to be
<a name="content"></a>
You could access it in a link prefixing the name with a '#' like
<a href="#content">Jump to content</a>
The name attribute is obsolete. Consider putting an id attribute on the nearest container instead.
Or you could add '#content' without the quotes to the end of the url in the browsers address bar.