Adding Footnotes To Your Blog
This is the basic code I use for adding footnotes to see how it works ---->

This goes some way to making your page more dynamic, and is best used on longer entries.It is fairly simple Html which is basically just hyperlinks to specific points within the blog rather than to an external page. That being said some basic knowledge of using Html in your blog entries is useful to have before you attempt this !!!

Each footnote you want to add will consist of four pieces of code:-

<a name=footback>
This is the first bit you need to add, put it in the text at the point where you want the reader to return to after reading the footnote.

<a href="#footnote"> Footnote </a>
This is the second, the actual link to the footnote,and goes in the text wherever you want to put it

<a name=footnote></a>Footnote
This is the third, you put this after your main text where you want the footnote, then add your note after it.

<a href="#footback">Return to blog</a>
And finally the click to return part, which goes after your footnote and takes the reader back to the point where you put the first piece of code.

                          So the finished code will look something like this:-

Lots of text of your blog................................................
............................................................................
Lots of text of your blog............................................
................................
................................................ Lots of text of your blog .....................................................................
.......................................................Lots of text of your  blog ..........................................................................
..................................................
  <a name=footback>....a few words before the link to the footnote....<a href="#footnote"> Footnote </a>.........Lots more text of your blog ........................................................................................................
....................Lots more text of your blog ........................................................................................................
...................Lots more text of your blog .......................................................................................................
......................Lots more text of your blog ........................................................................................................
....................end of main blog entry
<a name=footnote></a>Footnote..........Add your footnote here..............
<a href="#footback">Return to blog</a>

To add more than one note you will need to modify the code slightly by adding something like a 1 or A in each piece of code so each link is different. For instance, <a name=footback> could become <a name=footback1> and its corresponding part would change from <a href="#footback">Return to blog</a> to <a href="#footback1">Return to blog</a>
Feel free to browse the rest of my site by clicking------>
Hosted by www.Geocities.ws

1