Strange Anchor Tag Behavior (in-page links work, external pages do not) [closed]

Just a tip: the structure of the headings with anchor tags is the following on that site: <h2><a id="something" name="something"></a>SOMETHING</h2><p>Description of that thing</p>

However, the paragraph of the Corks section also contains the anchor tag of the following Wood section: <a name="wood"></a>. Then the paragraph is closed and comes the <h2 id="wood">WOOD (clean, untreated)</h2> It also causes the next section (#pressure) jumping to the bottom.

I think moving the wood anchor tag to the Wood h2 would solve the problem: <h2><a id="wood" name="wood"></a>WOOD (clean, untreated)</h2><p>text comes here</p>