Forum Moderators: open
And, please forgive the simplicity of my questions since I am pretty new to web development and still have a long way to go in figuring stuff out.
Thanks,
Mira
There is no "HTML" tag for footer. The footer as you probably know is just the stuff at the bottom of the page IE: links, copyright, contact info ect... If your server supports ASP or PHP you can call an include (SSI) file to include the footer on every page.
Let us know if your server supports (SSI) so we can give you some ideas.
<!--#include virtual="includes/footer.inc"-->
I use .inc for includes but you can use anything you want.
Fotter.inc looks like this:
<table width="100%" border="0" align="center">
<tr>
<td width="100%" height="19" align="center" valign="top">
<a href="http://www.mysite.com/default.asp" title="home">Home</a>
<a href="http://www.mysite.com/links.asp" title="links">Links</a>
<a href="http://www.mysite.com/act.asp" title="account info">Account Info </a>
<a href="http://www.mysite.com/contact.asp" title="Contact">Contact Us</a>
<a href="http://www.mysite.com/policys.asp" title="policys">Policys</a>
<a href="http://www.mysite.com/default.asp" title="Current News">News</a>
</td>
<tr>
<td height="19" colspan="2" align="center" valign="top">©2003 MyCompany</td>
</tr>
</table>
Remember to give your page a .ASP extension or it will not work.
I hope that helps let me know.