Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amixpal/5d4b4c5f1643feec6517b160c2c84550 to your computer and use it in GitHub Desktop.
Save amixpal/5d4b4c5f1643feec6517b160c2c84550 to your computer and use it in GitHub Desktop.
<!-- CSS Code: Place this code in the document's head (between the 'head' tags) -->
<style>
table.GeneratedTable {
width: 100%;
border-collapse: collapse;
border-width: 2px;
border-color: #46978C;
border-style: solid;
color: #000000;
}
table.GeneratedTable td, table.GeneratedTable th {
border-width: 2px;
border-color: #46978C;
border-style: solid;
padding: 3px;
}
table.GeneratedTable thead {
background-color: #46978C;
}
</style>
<!-- HTML Code: Place this code in the document's body (between the 'body' tags) where the table should appear -->
<table class="GeneratedTable">
<thead>
<tr>
<th>Categorie</th>
<th>Gemiddelde score</th>
<th>VS vorige maand</th>
<th>VS andere organisaties</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</tbody>
</table>
<!-- Codes by Quackit.com -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment