Tarea 4 - LENGUAJE DE MARCAS-TABLAS
Tarea 4 - LENGUAJE DE MARCAS-TABLAS
Tarea 4 - LENGUAJE DE MARCAS-TABLAS
CARRERA
DOCENTE
JESUS VILLARROYA
CURSO
LENGUAJE DE MARCAS
ALUMNA
2024
INTRODUCCION
Este código crea una tabla interactiva en una página web que permite
ordenar los datos mediante botones y cuenta con un diseño personalizado
mediante un archivo CSS externo. Además, el uso de etiquetas
semánticas, metadatos y elementos como charset y viewport garantiza
que la página sea accesible y responsiva.
<html lang="es">
<head>
</head>
<body>
<table>
<tr>
<th>N°</th>
<th>Nombre</th>
<th>Edad</th>
<th>Ciudad</th>
<th>Comentarios</th>
</tr>
<tr class="tablas1">
<th>1</th>
<td>Juan Pérez</td>
<td id="edad">30</td>
<td id="ciudad">Madrid</td>
</tr>
<tr class="tablas1">
<th>2</th>
<td id="ciudad">Barcelona</td>
</tr>
<tr class="tablas1">
<th>3</th>
<td>María González</td>
<td id="edad">25</td>
<td id="ciudad">Sevilla</td>
</tr>
<tr class="tablas1">
<th>4</th>
<td>Pedro Ramírez</td>
<td id="ciudad">Bilbao</td>
<td id="comentarios" rowspan="2">Le encanta administración en redes
informáticas.</td>
</tr>
<tr class="tablas1">
<th>5</th>
<td>Carlos Díaz</td>
<td id="ciudad">Valencia</td>
</tr>
<tr class="tablas1">
<th>6</th>
<td>Pedro Ramírez</td>
<td id="edad">48</td>
</tr>
<tr class="tablas1">
<th>7</th>
<td>Alberto Ruiz</td>
<td id="edad">50</td>
</tr>
<tr class="total-usuarios">
<td>7</td>
</tr>
</table>
</body>
</html>
border-collapse: collapse;
th, td {
padding: 8px;
text-align: left;
th {
background-color: #dcabe0;
text-align: center;
h1 {
background-color: #dcabe0;
text-align: center;
.total-usuarios {
.total-usuarios td {
.tablas1 th{
background-color: #e4ceeb; /* Color de fondo diferente */
#edad {
#ciudad {
#comentarios {
.btn {
margin: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
.btn:hover {
background-color: #0056b3;