-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarea17.html
87 lines (82 loc) · 2.48 KB
/
tarea17.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resultado de la búsqueda</title>
<style>
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid black;
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
text-align: center;
}
img {
width: 100px;
height: auto;
}
a {
color: blue;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Resultado de la búsqueda</h1>
<h2>Resultado de la búsqueda</h2>
<table>
<thead>
<tr>
<th>Imagen</th>
<th>Datos</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="/activ17/portatil.png" alt="Portátil"></td>
<td>
<p><strong>Portátil - 3 GHz - 4 GB RAM</strong></p>
<p>Comprar: <a href="#">2.599 €</a></p>
<p><del>2.999 €</del></p>
</td>
</tr>
<tr>
<td><img src="/activ17/videocamara.png" alt="Videocámara"></td>
<td>
<p><strong>Videocámara - Alta definición 1080p - 60 GB</strong></p>
<p>Comprar: <a href="#">6.999 €</a></p>
<p><del>1.099 €</del></p>
</td>
</tr>
<tr>
<td><img src="/activ17/tv.png" alt="Televisor"></td>
<td>
<p><strong>Televisor - 46" - Full HD</strong></p>
<p>Comprar: <a href="#">1.799 €</a></p>
<p><del>3.599 €</del></p>
</td>
</tr>
<tr>
<td><img src="/activ17/movil.png" alt="Móvil"></td>
<td>
<p><strong>Móvil - 3G - Wi-Fi - 8 GB</strong></p>
<p>Comprar: <a href="#">349 €</a></p>
<p><del>399 €</del></p>
</td>
</tr>
</tbody>
</table>
</body>
</html>