I want to link to certain places within my page, how do I do this, I have the code below:
<A HREF='#m'>M</A>
So what do I put in my code in order so when this "M" is clicked the browser skips to it?
You use
<a name="m">M</a>
to set up the anchor
Then
<a href="#m">Skip to M</a>
to link to it
More info here.
Scroll down to The Anchor Tag and the Name Attribute section