University of Utah

Specialized Table Designs

Updated on

ANOVA Table

Code: ANOVA Table
<table style="width: 90%; border-collapse: collapse; border-style: solid; text-align: center;" border="1" cellspacing="1" cellpadding="2">
   <caption>Table Caption</caption>
  <tbody>
    <tr>
      <th style="text-align: left;" scope="col">Source</th>
      <th scope="col">DF</th>
      <th scope="col">Adj SS</th>
      <th scope="col">Adj MS</th>
      <th scope="col">F-Value</th>
      <th scope="col">P-Value</th>
    </tr>
    <tr>
      <th style="text-align: left;" scope="row">Factor</th>
      <td></td>
      <td></td>
      <td></td>
      <td></td>
      <td></td>
    </tr>
    <tr>
      <th style="text-align: left;" scope="row">Error</th>
      <td></td>
      <td></td>
      <td></td>
      <td style="background-color: #E2E6E6;"></td>
      <td style="background-color: #E2E6E6;"></td>
    </tr>
    <tr>
      <th style="text-align: left;" scope="row">Total</th>
      <td></td>
      <td></td>
      <td style="background-color: #E2E6E6;"></td>
      <td style="background-color: #E2E6E6;"></td>
      <td style="background-color: #E2E6E6;"></td>
    </tr>
  </tbody>
</table>
Click to copy

Course Schedule Table

Code: Course Schedule Table
<table style="width: 100%;" border="1" cellspacing="0" cellpadding="6">
<caption>Table Caption</caption>
<thead>
<tr style="background-color: #BE0000;">
<th style="text-align: center; color: #FFFFFF;" scope="col">Items</th>
<th style="text-align: center; color: #FFFFFF;" scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;">Item 1</td>
<td>
<p>Text related to Item 1.</p>
</td>
</tr>
<tr>
<td style="text-align: center;">Item 2</td>
<td>
<p>Text related to Item 2.</p>
</td>
</tr>
<tr>
<td style="text-align: center;">Item 3</td>
<td>
<p>Text related to Item 3.</p>
</td>
</tr>
</tbody>
</table>
Click to copy

0 Comments

Add your comment

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Previous Article Accounting Tables
Next Article Table Code Basics