Skip to content

Instantly share code, notes, and snippets.

@jmarreros
Created November 6, 2016 01:20
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 jmarreros/bf48a0331cef47611b6d5af8004dde4a to your computer and use it in GitHub Desktop.
Save jmarreros/bf48a0331cef47611b6d5af8004dde4a to your computer and use it in GitHub Desktop.
Ejemplo de tabla HTML
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Ene</th>
<th>Feb</th>
<th>Mar</th>
<th>Abr</th>
<th>May</th>
<th>Jun</th>
<th>Jul</th>
<th>Ago</th>
<th>Sep</th>
<th>Oct</th>
<th>Nov</th>
<th>Dic</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jhon M.</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>50</td>
<td>600</td>
</tr>
<tr>
<td>Nora G.</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>94</td>
<td>1128</td>
</tr>
<tr>
<td>Irma .P</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>67</td>
<td>804</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment