Edit in JSFiddle

<div data-role='page' id='root'>
    <div data-role='header'>
        <h1>Website Title</h1>
    </div>
    <div data-role='content'>
        <p>Here is a paragraph that contains <a href='#page-2'>a link to page 2</a>. And content goes on here.</p>
    </div>
</div>
<div data-role='page' id='page-2'>
    <div data-role='header'>
        <h1>Page 2</h1>
    </div>
    <div data-role='content'>
        <p>Page 2 content goes here. And it may contain link that link back to the <a href='#root'>first page</a>.</p>
    </div>
</div>