If you create an anchor named “airplanes” somewhere down in your article;
<a name="airplanes" id="airplanes"></a>
…that becomes your anchor point, or the destination in the page you jump to when you click on a link to it.
The link leading to this anchor point in your article, should look like this;
<a href="#airplanes">something about my airplanes"</a>
That includes leaving the “pound” sign in, just as it is written above. When you click on the link you created, it should take you to the anchor you created. (Did you by any chance use the full URL to your blog when you created your link instead of just the # sign)?
If I made an error, I hope someone will spot it and correct me. I can’t think of a reason why that would not work if you placed it in a page or a post.
Also note concerning the anchor:
“There is nothing between the opening <a>
element and the closing </a>
element. It is ok to do this because anchors are invisible. Nobody can see them.”