Can someone tell me what I am doing wrongg??? HTML tables?

C:\Documents and Settings\Owner\My Documents\megdelawit folder\index.html

<html>
<body>
<h1>Welcome to my webpage! </h1><table border="1">
<tr>
<td>bleepblopblooop this is for Y!A to see how to fix this uppp. </td>
<td>Second one </td>
</tr>
<tr>
<td>HOW DO I MAKE CELLS?</td>
<td>PLEASE?</td>
</tr>
</table>
<p>Lemme get started on the paragraph later.</p>
</body>
</html>

Can anyone please fix this up so I can make this look like a COMPLICATED table??
Anyone who fixes up my code can get best answer to ALLL questions of mine....IDC!
I really need to get this doooone....
I need three tables that are not just random regular cells, LIKE EVERY BOX HAS TO BE A DIFFERENT SIZE.!!!
OMG....Can you please helppp?
 
add color and change its size by % or # pixels

<html>
<body>
<h1>blah blah</h1><table border="1" bgcolor="#007799" width="34%">
<tr>
<td>cell1</td>
<td>cell 2 </td>
</tr>
<tr>
<table border="1" bgcolor="#007700" width="22">
<td>another one</td>
<td>one more</td>
</tr>
</table>
<p>Lemme get started on the paragraph later.</p>
</body>
</html>
 
Back
Top