Skip to content

Instantly share code, notes, and snippets.

@johnsi15
Created February 21, 2017 14:16
Show Gist options
  • Save johnsi15/f239f61518a9f9431dbaf60fd603895a to your computer and use it in GitHub Desktop.
Save johnsi15/f239f61518a9f9431dbaf60fd603895a to your computer and use it in GitHub Desktop.
Estructura de tables en html5
<table id="tableRegistros" style="display: none;">
<thead>
<tr>
<th>Código</th>
<th>Dirección</th>
<th>Tipo de suscripción</th>
<th>Deuda total</th>
<th>N° de atrasos</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment