Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active February 12, 2018 22:50
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 parzibyte/c464cb4c52b0f7a203b6fe02a2bdfdaa to your computer and use it in GitHub Desktop.
Save parzibyte/c464cb4c52b0f7a203b6fe02a2bdfdaa to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Tabla de ejemplo</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Apellidos</th>
<th>Género</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>John</td>
<td>Doe</td>
<td>M</td>
</tr>
<tr>
<td>2</td>
<td>María José</td>
<td>Ejemplo</td>
<td>F</td>
</tr>
<tr>
<td>3</td>
<td>Pedro</td>
<td>Ramírez</td>
<td>M</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment