Saturday 11 January 2014

table example

<html>
 <head>
 </head>
 <body>
  <table border=1 width=400 height=400
         bordercolor=red
     
         align=left cellpadding=2
         cellspacing=10>
   <caption>Number table</caption>
   <tr>
     <th>one</th>
     <th>two</th>
     <th>three</th>
   </tr>
   <tr>
     <td colspan=3>four</td>
     <td rowspan=2>five</td>
   </tr>
   <tr>
     <td align=center valign=bottom>six</td>
     <td>seven</td>
   </tr>
  </table>
 </body>
</html>

No comments:

Post a Comment