HTML HELP NEED

C

cj

I want your help from HTML code for table.This table has 1 row 3
tables.But each table separate from others.In Eg: We do any changes in
Left Table But not effect from other tables.


I Dont Know HTML is Enough for this.... Please Write a Code & Post to
this group or (e-mail address removed)


Thanking you
 
K

Kevin Spencer

<table border="1" width="100%">
<tr>
<td>
<table border="1" width="100%">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
<td>
<table border="1" width="100%">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
<td>
<table border="1" width="100%">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

This is, by definition, not that.
 
C

cj

Thanks indeed for your message & i want Additional helpfrom you

i want design a simple HTML table for my new web.that table needs 1 row
and 3 colomns.but 3 colomns means 3 tables.that tables separate from
others.

in Eg:we do any changes in Left table but not effect from middle or
right side tables.(table sizes)
but i dont know my words enough for this.

i search the net & found web in my needs map with & i want table
structure of www.onlanka.com . onlanka middle table that is news of the
day area is daily update but no effect from left or right side tables.i
want that structure.

Because my sites is also a technology news site. I want to update
middle of the site.in my up date but no effects from other tables
sizes.

But i dont know HTML enough for this.Please write that code

PLEASE HELP ME.
 
S

Stefan B Rusynko

Kevins code does that
- except it probably needs cell alignments to keep the content at the top left
Just past the code in Code view

Below example has differrnt color borders so you can see the 4 tables (1 outer and 3 columns)

<table border="1" width="100%" cellspacing="0" cellpadding="2" bordercolor="#FF0000">
<tr>
<td align="left" valign="top">
<table border="1" width="100%" cellspacing="0" cellpadding="2" bordercolor="#000080">
<tr><td>&nbsp;</td></tr>
</table>
</td>
<td align="left" valign="top">
<table border="1" width="100%" cellspacing="0" cellpadding="2" bordercolor="#008000">
<tr><td>&nbsp;</td></tr>
</table>
</td>
<td align="left" valign="top">
<table border="1" width="100%" cellspacing="0" cellpadding="2" bordercolor="#0000FF">
<tr><td>&nbsp;</td></tr>
</table>
</td>
</tr>
</table>


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Thanks indeed for your message & i want Additional helpfrom you
|
| i want design a simple HTML table for my new web.that table needs 1 row
| and 3 colomns.but 3 colomns means 3 tables.that tables separate from
| others.
|
| in Eg:we do any changes in Left table but not effect from middle or
| right side tables.(table sizes)
| but i dont know my words enough for this.
|
| i search the net & found web in my needs map with & i want table
| structure of www.onlanka.com . onlanka middle table that is news of the
| day area is daily update but no effect from left or right side tables.i
| want that structure.
|
| Because my sites is also a technology news site. I want to update
| middle of the site.in my up date but no effects from other tables
| sizes.
|
| But i dont know HTML enough for this.Please write that code
|
| PLEASE HELP ME.
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top