If I use named anchors to jump around the single page, and I have few of them on the top like:
<a href="#general">General</a>
how would you use the named anchor code?
<h3><a name="general">General</a></h3>
or
<a name="general"></a>
<h3>General</h3>
The first one is bit confusing for me as it renders like a link while it does nothing when you click on it. I think that could confuse the user. On other side I see it used in HTML examples and wonder about right usage.
Thanks