help with html tables

Associate
Joined
5 Mar 2003
Posts
1,582
Location
Swadlincote
Please help me! I need 3 seperate tables and i cant do it

so far ive got

<html>
<head>
<fontsize=5>

<table width="100%" height="50%" border=1>
<tr>
<td width="25%"><img src="channel4.jpg"></td>
<td width="50%"><img src="madison avenue.jpg"></td>
<td width="25%"><a href="characters"></a></td>
</tr>
</table>

<table width="100%" height="20%" border="1">
<tr>
</tr>
</table>

<tr>
<table width="100%" height="30%" border="1">
</tr>
</table>



<font>
</head>
<title>
THE OFFICIAL WEBSITE FOR MADISON AVENUE
</title>
<body>
<body bgcolor=#003366>
<body text=#FFCC99>


</body>
</html>

This of course doesnt work! Help please
 
Oh man, that's so wrong :p

First, your tables need to go inside the <body></body> tags.
Second, you should only have ONE <body></body> tag pair.
Third, each table needs at least one <td></td> inside each <tr></tr>, and thats where you place any more tags.
Forth, you should quote all attribute values, ie <body text="#FFCC99">, not <body text=#FFCC99>

Try fixing those and see how you go from there.
 
Last edited:
many thanks. I tried to find the info out through some of the internet sites for html tutorial but still didnt get it. Your worked perfect thankyou!

How do i put a single space between the tables so the borders dont look thick?
 
Back
Top Bottom