Anchors

I sometimes need to use anchers in my posts so it’s eaier for everyone to navigate around. I know most people already know this, as for me, I usually have to look back at posts that I added anchors to remember how to do it.

Anchors

Anchors come in pairs.

On the same page

  1. From: <a href=”#anything”>Whatever</a>
  2. To: <a name=”anything”>Destination</a>

On a different page

  1. From page A: <a href=”pageB.html#anything”>Whatever</a>
  2. To page B: <a name=”anything”>Destination</a>

There. I got the instruction partially from http://www.hypergurl.com/anchors.html