-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ejemplo Tabla.html
144 lines (117 loc) · 3.94 KB
/
Ejemplo Tabla.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<html>
<head><title>Ejemplo de tabla sencilla</title></head>
<body>
<h1>Listado de cursos</h1>
<table>
<tr>
<td><strong>Curso</strong></td>
<td><strong>Horas</strong></td>
<td><strong>Horario</strong></td>
</tr>
<tr>
<td>CSS</td>
<td>20</td>
<td>16:00 - 20:00</td>
</tr>
<tr>
<td>HTML</td>
<td>20</td>
<td>16:00 - 20:00</td>
</tr>
<tr>
<td>Dreamweaver</td>
<td>60</td>
<td>16:00 - 20:00</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Ejemplo de tabla sencilla</title>
</head>
<body>
<h1>Su pedido</h1>
<table>
<tr>
<th scope="col">Nombre producto</th>
<th scope="col">Precio unitario</th>
<th scope="col">Unidades</th>
<th scope="col">Subtotal</th>
</tr>
<tr>
<td>Reproductor MP3 (80 GB)</td>
<td>192.02</td>
<td>1</td>
<td>192.02</td>
</tr>
<tr>
<td>Fundas de colores</td>
<td>2.50</td>
<td>5</td>
<td>12.50</td>
</tr>
<tr>
<td>Reproductor de radio & control remoto</td>
<td>12.99</td>
<td>1</td>
<td>12.99</td>
</tr>
<tr>
<th scope="row">TOTAL</th>
<td>-</td>
<td>7</td>
<td><strong>207.51</strong></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Ejemplo de tabla avanzada</title>
</head>
<body>
<h1>Resultado de la búsqueda</h1>
<table summary="Tabla con los datos de los resultados de la búsqueda">
<caption>Resultado de la búsqueda</caption>
<tr>
<th abbr="Imagen del producto" scope="col">Imagen</th>
<th abbr="Datos del producto" scope="col">Datos</th>
</tr>
<tr>
<td>
<img src="imagenes/portatil.png" alt="Imagen del ordenador portátil" />
</td>
<td>
<h4><a href="#" title="Ver más información sobre el portátil">Portátil - 3 GHz - 4 GB RAM</a></h4>
<p><a href="#" title="Comprar el portátil">Comprar:</a> <del>2.990 €</del> <strong>2.599 €</strong></p>
</td>
</tr>
<tr>
<td><img src="imagenes/videocamara.png" alt="Imagen de la videocámara" /></td>
<td>
<h4><a href="#" title="Ver más información sobre la videocámara">Videocámara - Alta definición 1080p - 60 GB</a></h4>
<p><a href="#" title="Comprar la videocámara">Comprar:</a> <del>1.099 €</del> <strong>999 €</strong></p>
</td>
</tr>
<tr>
<td><img src="imagenes/tv.png" alt="Imagen del televisor" /></td>
<td>
<h4><a href="#" title="Ver más información sobre el televisor">Televisor - 46" - Full HD</a></h4>
<p><a href="#" title="Comprar el televisor">Comprar:</a> <del>1.999 €</del> <strong>1.799 €</strong></p>
</td>
</tr>
<tr>
<td><img src="imagenes/movil.png" alt="Imagen del móvil" /></td>
<td>
<h4><a href="#" title="Ver más información sobre el móvil">Móvil - 3G - Wi-Fi - 8 GB</a></h4>
<p><a href="#" title="Comprar el móvil">Comprar:</a> <del>399 €</del> <strong>349 €</strong></p>
</td>
</tr>
</table>
</body>
</html>