Advertisement
Tusohian

Lab of Table

Oct 24th, 2019
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.54 KB | None | 0 0
  1. <html>
  2.  
  3.  
  4. <head>
  5. <style type="text/css">
  6. thead {color:green}
  7. tbody {color:blue}
  8. tfoot {color:red}
  9. </style>
  10. </head>
  11.     <body>
  12.     <center>
  13.         <table border=1 bgcolor="white">
  14.            <caption border><h3>Table 01</h3></caption>
  15.  
  16.  
  17.            <tr>
  18.                 <th>Name</th>
  19.                 <td>Bill Gates</th>
  20.            </tr>
  21.             <tr>
  22.                 <th rowspan="2">Telephone</th>
  23.                    <td>555 777 999</td>
  24.                 </tr>
  25.             </tr>
  26.  
  27.                 <tr>
  28.                    <td>888 858 6698</td>
  29.                 </tr>
  30.             </tr>
  31.         </table>
  32.  
  33.        </br>
  34.        </br>
  35.  
  36.  
  37.        <table border=1 bgcolor="white">
  38.            <caption><h3>Table 02</h3></caption>
  39.  
  40.            <tr>
  41.                 <th>Name</th>
  42.                 <th colspan="2">Telephone</th>
  43.            </tr>
  44.             <tr>
  45.                 <td>Bill Gates</th>
  46.                    <td>555 777 999</td>
  47.                    <td>888 858 6698</td>
  48.                 </tr>
  49.             </tr>
  50.             </tr>
  51.         </table>
  52.        
  53.        
  54.        
  55.        
  56.        
  57.        
  58.         <table border=1 bgcolor="white">
  59.            <caption><h3>Table 03 (using thead tfoot and tbody</h3></caption>
  60.  
  61.              
  62.  
  63.    
  64.            
  65.             <tfoot>
  66.              <tr>
  67.                 <td>New Footer</th>
  68.                 <td>582 696 5585</td>
  69.             </tr>
  70.             </tfoot>
  71.            
  72.             <thead>
  73.             <tr>
  74.                 <th>Name</th>
  75.                 <th>Telephone</th>
  76.            </tr>
  77.            </thead>
  78.            <tbody>
  79.            <tr>
  80.                 <td>Bill Gates</th>
  81.                 <td>555 777 999</td>
  82.             </tr>
  83.             </tbody>
  84.            
  85.         </table>
  86.  
  87.        
  88.        
  89.        
  90.        
  91.        
  92.        
  93.         <table border=1 bgcolor="white">
  94.            <caption><h3>Table Column wise color</h3></caption>
  95.  
  96.  
  97.             <colgroup>
  98.                 <col span="1" style="background-color:red">
  99.                 <col span="1" style="background-color:green">
  100.                 <col span="1" style="background-color:yellow">
  101.                 <col span="1" style="background-color:pink">
  102.             </colgroup>
  103.            
  104.            
  105.             <tr>
  106.                 <th>Name</th>
  107.                 <th>Telephone</th>
  108.                 <th>Test</th>
  109.                 <th>Demo</th>
  110.            </tr>
  111.            
  112.  
  113.            <tr>
  114.                 <td>Bill Gates</th>
  115.                 <td>555 777 999</td>
  116.                 <td>ABCD</td>
  117.                 <td>PQRS</td>
  118.             </tr>
  119.            
  120.              <tr>
  121.                 <td>New Footer</th>
  122.                 <td>582 696 5585</td>
  123.                 <td>DEFG</td>
  124.                 <td>Last One</td>
  125.             </tr>
  126.  
  127.            
  128.         </table>
  129.        
  130.        
  131.        
  132.        
  133.         <html>
  134.     <body>
  135.     <center>
  136.    
  137.    
  138.       <table border=2 bordercolor="blue">
  139.        
  140.  
  141.            <tr>
  142.                 <th rowspan="2">Empno</th>
  143.                 <th colspan="4">Marks</th>
  144.            </tr>
  145.             <tr>
  146.                    <td>Sec A</td>
  147.                    <td>Sec B</td>
  148.                    <td>Sec C</td>
  149.                    <td>Total</td>
  150.                 </tr>
  151.             </tr>
  152.             </tr>
  153.            
  154.             <tr>
  155.                    <td>1</th>
  156.                    <td>1</th>
  157.                    <td>2</td>
  158.                    <td>3</td>
  159.                    <td>6</td>
  160.  
  161.                 </tr>
  162.             </tr>
  163.            
  164.             <tr>
  165.                    <td>2</th>
  166.                    <td>4</th>
  167.                    <td>5</td>
  168.                    <td>6</td>
  169.                    <td>15</td>
  170.  
  171.                 </tr>
  172.             </tr>
  173.            
  174.            
  175.             <tr>
  176.                    <td>3</th>
  177.                    <td>7</th>
  178.                    <td>8</td>
  179.                    <td>9</td>
  180.                    <td>24</td>
  181.  
  182.                 </tr>
  183.             </tr>
  184.            
  185.             </tr>
  186.            
  187.         </table>
  188.    
  189.    
  190.    
  191.    
  192.    
  193.     </center>
  194.     </body>
  195. </html>
  196.  
  197.        
  198.        
  199.        
  200.        
  201.        
  202.        
  203.  
  204.  
  205.     </center>
  206.     </body>
  207. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement