The sample code given in the original post HTML 1-A Lesson: Anchors was incorrect.
The pound signs # should be used in the links to the anchors instead of the anchors themselves:
| Before, Incorrect: |
| Link to the anchor: |
<A href=enablingCategories>How do we enable categories?<A> |
| The Anchor: |
<A name=#enablingCategories>How do we enable Categories?<A> |
| After, Correct: |
| Link to the anchor: |
<A href=enablingCategories>How do we enable categories?<A>
<A href="#enablingCategories">How do we enable categories?<A>
|
| The Anchor: |
<A name=#enablingCategories>How do we enable Categories?<A>
<A name="enablingCategories">How do we enable Categories?<A>
| |