Haven't designed shit in a long time, trying to do a basic template. First comes a header with a graphic I designed, then comes two columns. The first contains the menu, second contains the content.
I've tried tons of variations in the <td> tag, but its just not working for some reason. I get the main header, but instead of placing the two columns squarely under the header, it puts one column under the entire header and starts to stretch the table with the second one. Any thoughts?
<html>
<head>
<title>
Test - New Design
</title>
</head>
<body>
<center>
<table style="width:1000px; height:2000px" border=2>
<tr>
<td style="width:1000px; height:200px" border=2>
<img src=header.jpg>
</td>
</tr>
<tr>
<td style="width:200px; height:1800px" border=1>
hello
</td>
<td style="width:800px; height:1800px" border=1>
hello
</td>
</tr>
</table>
</center>
</body>
</html>
I've tried tons of variations in the <td> tag, but its just not working for some reason. I get the main header, but instead of placing the two columns squarely under the header, it puts one column under the entire header and starts to stretch the table with the second one. Any thoughts?
<html>
<head>
<title>
Test - New Design
</title>
</head>
<body>
<center>
<table style="width:1000px; height:2000px" border=2>
<tr>
<td style="width:1000px; height:200px" border=2>
<img src=header.jpg>
</td>
</tr>
<tr>
<td style="width:200px; height:1800px" border=1>
hello
</td>
<td style="width:800px; height:1800px" border=1>
hello
</td>
</tr>
</table>
</center>
</body>
</html>