Quote:
Originally Posted by psychobike
Can someone please shows an example HTML code to use for the Header and Footer templete?
Show me what you used and cross out your site address if you need to. I keep getting red X's and white boxes with the code I've been using. Thanks!
|
A very simple example. Please note that if you want to add images you must write the full URL to the photo.
1.- Header
HTML Code:
<html>
<head>
<title>My Site</title>
</head>
<body>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="100%" align="left">
<img border="0" src="http://www.mydomain.com/images/logo.jpg">
</td>
<tr>
<td>
2. Footer
HTML Code:
</td>
</tr>
<tr>
<td align="center">
Copyright <a href="http://www.mydomain.com/">SuperSite</a>
</td>
</tr>
</table>
</body>
</html>
As I said, this is a simple example. You can use some styling by placing:
HTML Code:
<style>
</style>
in head section
Chris