-
Notifications
You must be signed in to change notification settings - Fork 0
/
TiposTablas.html
122 lines (122 loc) · 2.01 KB
/
TiposTablas.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
<html>
<head>
<meta charset="UTF-8"/>
<title>Tipos de Tablas</title>
</head>
<body>
<!-- Tabla básica-->
<table>
<tr>
<td>Alumno</td><td>Calificación</td>
</tr>
<tr>
<td>Pepe</td><td>7.65</td>
</tr>
<tr>
<td>María</td><td>8.54</td>
</tr>
<tr>
<td>Jordi</td><td>5.55</td>
</tr>
</table>
<br/>
<!-- Tabla con Titulos-->
<table>
<tr>
<th>Alumno</th><th>Calificación</th>
</tr>
<tr>
<td>Pepe</td><td>7.65</td>
</tr>
<tr>
<td>María</td><td>8.54</td>
</tr>
<tr>
<td>Jordi</td><td>5.55</td>
</tr>
</table>
<br/>
<!-- Tabla con Titulos y estructurada-->
<table>
<thead>
<tr>
<th>Alumno</th><th>Calificación</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pepe</td><td>7.65</td>
</tr>
<tr>
<td>María</td><td>8.54</td>
</tr>
<tr>
<td>Jordi</td><td>58.55</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>MEDIA</td><td>7.25</td>
</tr>
<tr>
<td>DESV. TÍPICA</td><td>7.35</td>
</tr>
</tfoot>
</table>
<br/>
<!-- Tabla con Titulos, estructurada y con Texto general-->
<table>
<caption>Tabla de calificaciones</caption>
<thead>
<tr>
<th>Alumno</th><th>Calificación</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pepe</td><td>7.65</td>
</tr>
<tr>
<td>María</td><td>8.54</td>
</tr>
<tr>
<td>Jordi</td><td>58.55</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>MEDIA</td><td>7.25</td>
</tr>
<tr>
<td>DESV. TÍPICA</td><td>7.35</td>
</tr>
</tfoot>
</table>
<br/>
<!-- Tabla con Titulos, estructurada, con Texto general y celdas conbinadas-->
<table>
<caption>Ingresos</caption>
<thead>
<tr>
<th colspan="2">2020</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">Enero</td><td>$1000.00</td>
</tr>
<tr>
<td>$500.00</td>
</tr>
<tr>
<td>Febrero</td><td>$750.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Total</th><td>$2250.00</td>
</tr>
</tfoot>
</table>
</body>
</html>