<table width="95%" align="center" border=0><tr><td> the start of table

colspanihorizontal mergerj

<table border="1">
<tr>
<td colspan="3">Producing homepage</td>
<!-- td Merging with "Producing homepage" -->
<!-- td Merging with "Producing homepage" -->
</tr>
<tr>
<td>Director</td>
<td>Designer</td>
<td>Programmer</td>
</tr>
</table>

You look this at your browzer as below.
Producing homepage
Director Designer Programmer

rowspanivertical mergerj

<table border="1">
<tr>
<td rowspan="3">Producing homepage</td>
<td>Director</td>
</tr>
<tr>
<!-- td Merging with "Producing homepage" -->
<td>Designer</td>
</tr>
<tr>
<!-- td Merging with "Producing homepage" -->
<td>Programmer</td>
</tr>
</table>

You look this at your browzer as below.

Producing homepage Director
Designer
Programmer

colspan and rowspaniThe combinination of horizontal and vertical mergerj

<table border="2">
<tr>
<th colspan="2">Member</th>
<!-- td "Merging with Member" -->
<th>Planet</th>
</tr>
<tr>
<td>Moi</td>
<td>M</td>
<td rowspan="3">Mars</td>
</tr>
<tr>
<td>Toi</td>
<td>F</td>
<!-- td "Merging with Mars" -->
</tr>
<tr>
<td>Elle</td>
<td>F</td>
<!-- td "Merging with Mars" -->
</tr>

You look this at your browzer as below.

Member Planet
Moi M Mars
Toi F
Elle F


colspan and rowspaniThe combinination of horizontal and vertical mergerj

<table border="1">
<tr>
<td colspan="3" rowspan="3">Merging 9 cells</td>
<!-- td "Merging 9 cells" -->
<!-- td "Merging 9 cells" -->
<td>4th on 1st line</td>
</tr>
<tr>
<!-- td "Merging 9 cells" -->
<!-- td "Merging 9 cells" -->
<!-- td "Merging 9 cells" -->
<td>4th on 2nd line</td>
</tr>
<tr>
<!-- td "Merging 9 cells" -->
<!-- td "Merging 9 cells" -->
<!-- td "Merging 9 cells" -->
<td>4th on 3rd line</td>
</tr>
<tr>
<td>1st on 4th line</td>
<td>2nd on 4th line</td>
<td>3rd on 4th line</td>
<td>4th on 4th line</td>
</tr>
</table>

You look this at your browzer as below.

Merging 9 cells 4th on 1st line
4th on 2nd line
4th on 3rd line
1st on 4th line 2nd on 4th line 3rd on 4th line 4th on 4th line

Setting of border=0 and 2

<table width=600 border=0>
1 2 3

<table width=600 border=2>
1 2 3


Setting of cellspacing= non and 0. Normally, "cellspacing" should keep value 0.

<table width=600>
1 2 3

<table width=600 cellspacing=0>
1 2 3


Setting of cellpadding = non and 5

<table width=500 border=1 cellspacing=0>
@Birthday 2008/02/29
@Age 15
@Blood type C
@Height 15cm
@Hobby Eating

<table width=500 border=1 cellspacing=0 cellpadding=5>
@Birthday 2008/02/29
@Age 15
@Blood type C
@Height 15cm
@Hobby Eating

Setting the rate of width

<table width=400 border=0 cellspacing=0 cellpadding=10> total 400 pixels
Set width=200 at left cell Set width=200 at right cell

<table border=0 cellspacing=0 cellpadding=10> total 440 pixels
Set width=200 at left cell Set width=200 at right cell

<table border=0 cellspacing=0 cellpadding=10> total 400 pixels
Set width=180 at left cell Set width=180 at right cell

Setting valign and valign

<td width=200 height=100 bgcolor=Green>
That is how Dries Durnez, a Belgian graduate student at Doshisha University in Kyoto, remembers how he used to look up kanji, those intricate Chinese-based characters that make up a sizable chunk of the Japanese syllabary.
From The Japan Times
The former leader of Vietnam once opposed leisure pursuits like golf. Now a string of luxury courses bears his name.
From Herald Tribune
<td width=200 height=100 bgcolor=Green valign=top>
That is how Dries Durnez, a Belgian graduate student at Doshisha University in Kyoto, remembers how he used to look up kanji, those intricate Chinese-based characters that make up a sizable chunk of the Japanese syllabary.
From The Japan Times
The former leader of Vietnam once opposed leisure pursuits like golf. Now a string of luxury courses bears his name.
From Herald Tribune

Using width with nowrap at td or using non width with nowrap at td

<td width=200 bgcolor=Green nowrap>
Living more than 50 years of her life in Japan, artist Frances Blakemore was a close and sympathetic observer of the country.
The Japan Times

<td bgcolor=Green nowrap>
Living more than 50 years of her life in Japan, artist Frances Blakemore was a close and sympathetic observer of the country.
The Japan Times

Using nobr at td

Non nobr
Name 2 byte char
Wanted vvvvvvvv gggggg bbbbbb kkkkkkkkkk dddddd oooooo

<td nowrap>
<input type=checkbox name="part" value="v">Violin
<input type=checkbox name="part" value="g">Guitar
<input type=checkbox name="part" value="b">Tambourine
<input type=checkbox name="part" value="k">Keyboard
<input type=checkbox name="part" value="d">Dram
<input type=checkbox name="part" value="o">Others
</td>
Name 2 byte char
Position wanted Tambourine Guitar Base Keyboard Dram Others

<td>
<input type=checkbox name="part" value="v">Vocal
<input type=checkbox name="part" value="g">Guitar
<input type=checkbox name="part" value="b">Base
<nobr><input type=checkbox name="part" value="k">Keyboard</nobr>
<nobr><input type=checkbox name="part" value="d">Dram</nobr>
<nobr><input type=checkbox name="part" value="o">Others</nobr>
</td>
Name 2 byte char
Position wanted Vocal Guitar Base Keyboard Dram Others


Well done with good job!

<table border=1>
<tr>
<td>
<img src="1.jpg" width=163 height=121>
</td>
</tr>
</table>

You look this at your browzer as below.


</td></tr></table> the end of table