Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active July 7, 2020 16:08
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/407f9ceb1ebe62743ee4573cd0c3b977 to your computer and use it in GitHub Desktop.
Save parzibyte/407f9ceb1ebe62743ee4573cd0c3b977 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Centrar tabla HTML CSS</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a href="//parzibyte.me/blog">By Parzibyte</a>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Edad</th>
</thead>
<tbody>
<tr>
<td>Luis</td>
<td>23</td>
</tr>
<tr>
<td>María</td>
<td>24</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment