Help needed to add a Creative Commons icon in the footer

I really need to add a creative commons image in the footer of my website.

I have the code in HTML -
Code:
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_GB"><img alt="Creative Commons Licence" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-nd/3.0/80x15.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">MCTF2 Minecraft Plugin</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="www.mctf2.com" property="cc:attributionName" rel="cc:attributionURL">Declan Pitts</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_GB">Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="www.mctf2.com" rel="dct:source">www.mctf2.com</a>.

How can I do this?

Thanks.
 
Put it in template footer.html. Wrap your code in
Code:
<div style="text-align:center;">your license stuff</div>
and add it at the end of file before last
Code:
<span class="helper"></span>
 
Top Bottom