Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 29, 2020 23:16
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/9cd34b6102b2e51a878e8e4120092c96 to your computer and use it in GitHub Desktop.
Save parzibyte/9cd34b6102b2e51a878e8e4120092c96 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>Eliminar contenido</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<table>
<thead>
<tr>
<th>Nombre</th>
</tr>
</thead>
<tbody id="cuerpoTabla">
<tr>
<td>Luis</td>
</tr>
<tr>
<td>Luis</td>
</tr>
<tr>
<td>Luis</td>
</tr>
</tbody>
</table>
<br>
<button id="btnLimpiar">Limpiar</button>
<script src="script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment