ayudenme con tablas por favor

sofi
05 de Mayo del 2005
estoy tratando de hacer una web pero al colocar las tablas no me queda como yo quiero quiero que se mire asi : como la figura de abajo por favor estoy aprendiendo html y les agradecer que me ayuden a explicarme como puede conseguir que mis tablas de mi pagina se miren asi por favor ya hasta me duele la cabeza de tanto intentar y sino se me enciman no aparecen las tablas .


____________________________________________
___|_________| |____________|
___|_________| |____________|
___|_________| texto |____________|
___|_________| |____________|
___|_________|___________________|____________|

Ricucho
05 de Mayo del 2005
Te envio codigo de una tabla:
copia y pega y juega con ello:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<table width="369" height="130" border="1">
<tr>
<td width="64" height="23">&nbsp;</td>
<td width="64">&nbsp;</td>
<td colspan="2">&nbsp;</td>
<td width="103">&nbsp;</td>
</tr>
<tr>
<td height="24">&nbsp;</td>
<td>&nbsp;</td>
<td colspan="2">&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td height="23">&nbsp;</td>
<td>&nbsp;</td>
<td width="44">texto</td>
<td width="60">&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td height="23">&nbsp;</td>
<td>&nbsp;</td>
<td colspan="2">&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td height="23">&nbsp;</td>
<td>&nbsp;</td>
<td colspan="2">&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>