I wrote this html file which has 2 links...
1- Index
2- Contact us
I'm using the same html file for both links...i wrote the index, and did a save as, and call it contactus...i'm doing this because i'm noticing the tables move when i go from link to link eventhough they are the same file...
the first time i open it, it looks fine...however when i'm in the index and i click contact us, the table moves slightly to the left...i don't want that to happen and i have no clue of how to fix it...
1- Index
2- Contact us
I'm using the same html file for both links...i wrote the index, and did a save as, and call it contactus...i'm doing this because i'm noticing the tables move when i go from link to link eventhough they are the same file...
the first time i open it, it looks fine...however when i'm in the index and i click contact us, the table moves slightly to the left...i don't want that to happen and i have no clue of how to fix it...
Code:
<html>
<head>
<title>Tables</title>
<style type="text/css">
<!--
body {
background-color: #FFFFFF;
}
-->
</style></head>
<body LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<table width="572" height="600" border="1" align="center">
<tr>
<td width="130"> </td>
<td width="442"> </td>
</tr>
<tr>
<td width="130">
<p> </p>
<p> </p>
<p> </p>
<table width="125" border="0">
<tr>
<td> <a href="index2.htm">Index</a></td>
</tr>
<tr>
<td width="60"> </td>
</tr>
<tr>
<td width="62"> </td>
</tr>
<tr>
<td> <a href="contactus3.htm">Contact Us</a></td>
</tr>
</table> </td>
<td width="442">
<p> </p>
<p> </p> <table width="303" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="303" height="372"><p> </p>
<p>s</p>
<p>s</p>
<p>s</p>
<p>s</p>
<p> </p>
<p>s</p>
<p>s</p></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>