Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 8, 2019 00:13
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/67bfd945bfb5eac7ad34ab01a2ad2977 to your computer and use it in GitHub Desktop.
Save parzibyte/67bfd945bfb5eac7ad34ab01a2ad2977 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Tabla estática</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Título</th>
<th>Año</th>
<th>Género</th>
<th>Editar</th>
<th>Eliminar</th>
</tr>
</thead>
<tbody>
<!-- Notar que siempre se repite lo que hay entre <tr> y </tr> -->
<tr>
<td>Pac Man</td>
<td>2000</td>
<td>Arcade</td>
<td>
<a href="#">Editar</a>
</td>
<td>
<a href="#">Eliminar</a>
</td>
</tr>
<tr>
<td>Crash Team Racing</td>
<td>2000</td>
<td>Carreras</td>
<td>
<a href="#">Editar</a>
</td>
<td>
<a href="#">Eliminar</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment