Link from one part of your page to another part. Set up tables of contents at the top of long pages for better navigation.
Difficulty: Easy
Time Required: 5 minutes
Here's How:
- Use an anchor tag to name the area you want to bounce to:
<a name="bounce">bounce to here</a> - Use another anchor tag to point to that area you named:
<a href="#bounce">click here to bounce</a>
Tips:
- The #-sign is important as that tells the browser that this is a link within a page.

