Created
          March 27, 2012 21:40 
        
      - 
      
 - 
        
Save brianblakely/2220593 to your computer and use it in GitHub Desktop.  
    Very Semantic Table
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <table> | |
| <caption>2009 Employee Sales by Department</caption> | |
| <thead> | |
| <tr> | |
| <td></td> | |
| <th scope="col">food</th> | |
| <th scope="col">auto</th> | |
| <th scope="col">household</th> | |
| <th scope="col">furniture</th> | |
| <th scope="col">kitchen</th> | |
| <th scope="col">bath</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <th scope="row">Mary</th> | |
| <td>190</td> | |
| <td>160</td> | |
| <td>40</td> | |
| <td>120</td> | |
| <td>30</td> | |
| <td>70</td> | |
| </tr> | |
| <tr> | |
| <th scope="row">Tom</th> | |
| <td>3</td> | |
| <td>40</td> | |
| <td>30</td> | |
| <td>45</td> | |
| <td>35</td> | |
| <td>49</td> | |
| </tr> | |
| </tbody> | |
| <tfoot> | |
| <tr> | |
| <td></td> | |
| <th scope="col">food</th> | |
| <th scope="col">auto</th> | |
| <th scope="col">household</th> | |
| <th scope="col">furniture</th> | |
| <th scope="col">kitchen</th> | |
| <th scope="col">bath</th> | |
| </tr> | |
| </tfoot> | |
| </table> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment