Advertisement
xellscream

AlphabetTable

Nov 19th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>AlphabetTable</title>
  5.     </head>
  6.     <table cellpadding="4" border="1">
  7.         <tr>
  8.             <th colspan="3" width="100px">Title goes here</th>
  9.             <th width="20%">A</th>
  10.             <th width="20%">B</>
  11.         </tr>
  12.         <tr>
  13.             <th rowspan="3">C</th>
  14.             <th>D</th>
  15.             <th>E</th>
  16.             <th>F</th>
  17.             <th>G</th>
  18.         </tr>
  19.         <tr>
  20.             <th>H</th>
  21.             <th colspan="2">I</th>
  22.             <th rowspan="2" style="vertical-align: bottom;"><br/>&nbsp;&nbsp;&nbsp;&nbsp;J</th>
  23.         </tr>
  24.         <tr>
  25.             <th>K</th>
  26.             <th>L</th>
  27.             <th>M</th>
  28.         </tr>
  29.         <tr>
  30.             <th>N</th>
  31.             <th colspan="4">O</th>
  32.         </tr>
  33.     </table>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement