Skip to content

Commit 0903fb5

Browse files
committed
correccion ejercicio de tablas
1 parent e1bfc1b commit 0903fb5

1 file changed

Lines changed: 28 additions & 21 deletions

File tree

Ejercicio-02-2-Tablas-en-HTML.html

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,35 @@
1111
<body>
1212
<h3>Libros favoritos</h3>
1313
<table>
14-
<tr>
15-
<th>Titulo</th>
16-
<th>Autor</th>
17-
<th>Enlace a Amazon</th>
18-
</tr>
19-
<tr>
20-
<td>Harry Potter y la piedra filosofal</td>
21-
<td>J.K Rowling</td>
22-
<td><a target="_blank" href="https://a.co/d/gErAo3X">Link de compra</a></td>
23-
</tr>
24-
<tr>
25-
<td>Fuego y Sangre</td>
26-
<td>Geor R martin</td>
27-
<td><a target="_blank" href="https://a.co/d/1goqVtc">Link de compra</a></td>
28-
</tr>
29-
<tr>
30-
<td>El Principe</td>
31-
<td>Nicolas Maquiavelo</td>
32-
<td><a target="_blank" href="https://a.co/d/3UbdL6z">Link de compra</a></td>
33-
</tr>
14+
<thead>
15+
<tr>
16+
<th>Titulo</th>
17+
<th>Autor</th>
18+
<th>Año de publicación</th>
19+
<th>Enlace de compra</th>
20+
</tr>
21+
</thead>
22+
<tbody>
23+
<tr>
24+
<td>Harry Potter y la piedra filosofal</td>
25+
<td>J.K Rowling</td>
26+
<td>1999</td>
27+
<td><a target="_blank" href="https://a.co/d/gErAo3X">Link de compra</a></td>
28+
</tr>
29+
<tr>
30+
<td>Fuego y Sangre</td>
31+
<td>Geor R martin</td>
32+
<td>1994</td>
33+
<td><a target="_blank" href="https://a.co/d/1goqVtc">Link de compra</a></td>
34+
</tr>
35+
<tr>
36+
<td>El Principe</td>
37+
<td>Nicolas Maquiavelo</td>
38+
<td>1532</td>
39+
<td><a target="_blank" href="https://a.co/d/3UbdL6z">Link de compra</a></td>
40+
</tr>
41+
</tbody>
3442
</table>
3543

3644
</body>
37-
3845
</html>

0 commit comments

Comments
 (0)