Work Text:
Anything in bold would be your text
What it looks like:
blah blah 1 blah blah
1. blah blah return to text
HTML:
blah blah<sup><a id="1back" href="#1" rel="nofollow" name="1back"></a></sup><a id="1back" href="#1" rel="nofollow" name="1back"><sup>1</sup></a> blah blah
<a name="1" rel="nofollow" id="1"></a>1. blah blah <a href="#1back" rel="nofollow">return to text</a>
Sidenote you could technically use whatever character you wanted (in place of numbers) but if you use more than one footnote be sure to use different symbols:
What it looks like:
* blah blah return to text
** blah blah return to text
HTML:
blah blah <sup><a id="*back" href="#*" rel="nofollow" name="*back"></a></sup><a id="*back" href="#*" rel="nofollow" name="*back"><sup>*</sup></a> blah blah <sup><a id="**back" href="**" rel="nofollow" name="**back"></a></sup><a id="**back" href="#**" rel="nofollow" name="**back"><sup>**</sup></a>
<a name="*" rel="nofollow" id="*"></a>* blah blah <a href="#*back" rel="nofollow">return to text</a>
<a name="**" rel="nofollow" id="**"></a>** blah blah <a href="#**back" rel="nofollow">return to text</a>
I can not stress this enough If you're doing more than one footnote be sure to change the number from 1 to whatever.
What it looks like:
1. blah blah return to text
2. blah blah return to text
HTML:
blah blah <sup><a id="1back" href="#1" rel="nofollow" name="1back"></a></sup><a id="1back" href="#1" rel="nofollow" name="1back"><sup>1</sup></a> blah blah <sup><a id="2back" href="#2" rel="nofollow" name="2back"></a></sup><a id="2back" href="#2" rel="nofollow" name="2back"><sup>2</sup></a>
<a name="1" rel="nofollow" id="1"></a>1. blah blah <a href="#1back" rel="nofollow">return to text</a>
<a name="2" rel="nofollow" id="2"></a>2. blah blah <a href="#2back" rel="nofollow">return to text</a>
The <sup> will make the footnote subscript, if the text after your footnote is also in subscript then you need to make sure the <sup> after the HTML has a / (ex: <sup> into </sup>)
Note: the HTML will look intimidating, don't fret, all is well, just read it carefully and be sure to preview your work before posting
Another note: if you have bold or italics in your text that will add more HTML in there so be prepared for that
