Begin Main Content Area

​Add Anchor Tags (Bookmarks)

Edit the page, click Edit Source, within the HTML code follow the following:

First, create a bookmark with the id attribute:

<h2 id="C4">Chapter 4</h2>

Then, add a link to the bookmark ("Jump to Chapter 4"), from within the same page:

<a href="#C4">Jump to Chapter 4</a>

Or, add a link to the bookmark ("Jump to Chapter 4"), from another page:

Example

<a href="/sites/YOURAGENCY/Subsite/Pages.aspx#C4">Jump to Chapter 4</a>