27 lines
651 B
HTML
27 lines
651 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<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>
|