i have two file
index.htm, contactus.htm
when i click index to go to the contactus page it moves to the right...
when i click contactus to go to index page it goes to the left...
i need the index main table to be 750 x 1000, and the contactus table to be 750 x 563...
i think the height has something to do with it but i need those 2 sizes of the main table to not change....
thanks in advance i have no clue of what to do so i can browse to them, and they don't move
index.htm, contactus.htm
when i click index to go to the contactus page it moves to the right...
when i click contactus to go to index page it goes to the left...
i need the index main table to be 750 x 1000, and the contactus table to be 750 x 563...
i think the height has something to do with it but i need those 2 sizes of the main table to not change....
thanks in advance i have no clue of what to do so i can browse to them, and they don't move
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="750" height="1000" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="750" valign="top">
<table width="750" height="110">
<tr>
<td width="750"> </td>
</tr>
</table>
<table width="750" height="26" align="center">
<tr>
<td width="105" height="22"> </td>
<td width="135" height="22"><div align="center">index</div></td>
<td width="135" height="22"><div align="center"><a href="contactus.htm">contact us</a></div></td>
<td width="135" height="22"><div align="left">c</div></td>
<td width="135" height="22"><div align="left">d</div></td>
<td width="105" height="22"> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>about us</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="750" height="563" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="750" valign="top">
<table width="750" height="110">
<tr>
<td width="750"> </td>
</tr>
</table>
<table width="750" height="26" align="center">
<tr>
<td width="105" height="22"> </td>
<td width="135" height="22"><div align="center"><a href="index.htm">index</a></div></td>
<td width="135" height="22"><div align="center">contact us</div></td>
<td width="135" height="22"><div align="left">c</div></td>
<td width="135" height="22"><div align="left">d</div></td>
<td width="105" height="22"> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>