An anchor name (id name) in the address bar

What you want is www.websitename.com/#sectionName ?
If you use anchor name or ID to scroll to section, it should be shown in url bar.

<a href="#SectionName"> Go to Section Div </a>

And your div ID

<div id="SectionName"> Content </div>

After you clicked, It should show ID name on URL bar. Hope this helps you.