Files
clase-10-ejercicios-de-repaso/ejercicio6/index.html
2026-06-01 18:48:42 -03:00

25 lines
593 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Ejercicio 6</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<h1>Ejercicio 6</h1>
<table id="tabla">
<thead>
<tr>
<th>Nombre</th>
<th>Sector</th>
<th>Sueldo</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="ejercicio6.js"></script>
</body>
</html>