ejercicio 6: tabla dinamica de empleados

This commit is contained in:
2026-05-28 13:46:22 -03:00
parent 6b28028009
commit f9f562bf1c
3 changed files with 89 additions and 2 deletions

View File

@@ -2,13 +2,25 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejercicio 6</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<h1>Ejercicio 6</h1>
<table id="tabla-empleados">
<thead>
<tr>
<th>Nombre</th>
<th>Sector</th>
<th>Sueldo</th>
</tr>
</thead>
<tbody></tbody>
<tfoot></tfoot>
</table>
<script src="ejercicio6.js"></script>
</body>
</html>