HTML Help, formating the page!?

  • Thread starter Thread starter elz.gamer
  • Start date Start date
E

elz.gamer

Guest
I am trying to design a webpage but really early in i am having some difficulties. I have really basic knowledge of html and i want to heep the webpage simple.
This is the html text i haev so far.
<head>

<title> Title Here </title>

</head>
<body bgcolor="#FFFFFF">
<body>

<table border="0" width="100%" cellpadding="10">
<tr>
<TR bgcolor="#FFFF66 ">
<td width="30%" valign="top">
Links here
</Tr bgcolor>
</td>

<td width="70%" valign="top">
Main text and pictures for each page here

</td>

</tr>
</table>

</body>
</body bgcolor>
and also with the <html> and </html>.
I want to make it so the text box with 'Main text and pictures for each page here' is white but the other remains yellow. Can you please tell me how this is done? I would also like to add a bar up the top where i can place a logo- what codes do i pu tin place for this?
Any help much appreciated.
 
<html>
<head>
<title> Title Here </title>

</head>
<body bgcolor="#FFFFFF">

<table border="0" width="100%" cellpadding="10">
<tr><td colspan="2">Logo Goes Here
</td>
</tr>
<tr bgcolor="#FFFF66 ">
<td width="30%" valign="top">
Links here
</tr bgcolor>
</td>

<td width="70%" valign="top" bgcolor="#ffffff">
Main text and pictures for each page here

</td>
</tr>
</table>
</body>
</html>

You needed to change the background of the table cell to white with the bgcolor="#ffffff" attribute. You just needed to fix the top row. You started it but didn't finish. <tr><td colspan="2">Logo Goes Here
</td>
</tr>
 
Back
Top