How do you position a link in html so that it's at the bottom of a page? i'd

It's sort of a hack way to do it, but you could use a table like this:

<table width="100%" height="800" border="0" cellpadding="2" cellspacing="0">
<tr>
<td valign="bottom"><a href="yourlink.com">yourlink </a></td>
</tr>
</table>
 
Back
Top