Table

DaanG

New Member
Messages
32
Reaction score
0
Points
0
Hi, maybe this isn't the right place to ask but :

Can someone give met the code for a table with two columns, in the left column there are 5 rows and in the right column is one row

can someone give this to me plse

thnx, Daang
 

S.D

New Member
Messages
102
Reaction score
0
Points
0
i dont know html at all, try it in frontpage
 

simmie

New Member
Messages
76
Reaction score
0
Points
0
HTML:
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<table width="200" border="1">
  <tr>
    <td>&nbsp;</td>
    <td rowspan="5">&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>

</body>
</html>

this should do the trick
 
Top